No need to link to ntdll for such a simply functionality

svn path=/trunk/; revision=31666
This commit is contained in:
Hervé Poussineau 2008-01-08 09:34:47 +00:00
parent cf5631fac8
commit 8285f46476
2 changed files with 1 additions and 2 deletions

View file

@ -52,7 +52,7 @@ int _tmain(int argc, TCHAR ** argv)
}
offset++;
}
DbgPrint(buf);
OutputDebugString(buf);
HeapFree(GetProcessHeap(), 0, buf);
return 0;
}

View file

@ -4,6 +4,5 @@
<define name="_WIN32_IE">0x0501</define>
<define name="_WIN32_WINNT">0x0501</define>
<library>kernel32</library>
<library>ntdll</library>
<file>dbgprint.c</file>
</module>