- Fix Greatlordisms:

* Don't try to link *user*mode program to static *kernelmode* libcntpr. msvcrt.dll exists for this.
* Fix main()'s declaration and definition.
* The above changes fix compiling of rostest module.

svn path=/trunk/; revision=31043
This commit is contained in:
Aleksey Bragin 2007-12-06 15:44:23 +00:00
parent 766f1a8a1b
commit 96fcea9b72
2 changed files with 3 additions and 4 deletions

View file

@ -5,7 +5,6 @@
<library>kernel32</library>
<library>gdi32</library>
<library>ddraw</library>
<library>libcntpr</library>
<library>user32</library>
<file>main.c</file>
</module>

View file

@ -22,10 +22,10 @@
*
*/
INT main(INT argc, CHAR argv[]);
INT main(INT argc, TCHAR *argv[]);
VOID BuildReturnCode(DWORD * ReturnCode);
INT main(INT argc, TCHAR argv[])
INT main(INT argc, TCHAR *argv[])
{
DWORD ReturnCode[256];
@ -44,6 +44,6 @@ VOID BuildReturnCode(DWORD * ReturnCode)
{
dp2command.bCommand = t;
ReturnCode[t] = D3DParseUnknownCommand ( (LPVOID) &dp2command, (LPVOID *) lplpvReturnedCommand) ;
printf("D3DParseUnknownCommand return code = %x command %d \n", ReturnCode[t], t);
printf("D3DParseUnknownCommand return code = %x command %d \n", (UINT)ReturnCode[t], t);
}
}