--- trunk/reactos/subsys/ntvdm/ntvdm.c 2005-05-01 17:32:09 UTC (rev 14917)
+++ trunk/reactos/subsys/ntvdm/ntvdm.c 2005-05-01 18:23:08 UTC (rev 14918)
@@ -276,12 +276,12 @@
ULONG i;
BOOL vdmStarted = FALSE;
- TCHAR WelcomeMsg[RC_STRING_MAX_SIZE];
- TCHAR PromptMsg[RC_STRING_MAX_SIZE];
+ WCHAR WelcomeMsg[RC_STRING_MAX_SIZE];
+ WCHAR PromptMsg[RC_STRING_MAX_SIZE];
CHAR InputBuffer[255];
- LoadString( GetModuleHandle(NULL), STRING_WelcomeMsg, WelcomeMsg,sizeof(WelcomeMsg));
- LoadString( GetModuleHandle(NULL), STRING_PromptMsg, PromptMsg ,sizeof(PromptMsg));
+ LoadString( GetModuleHandle(NULL), STRING_WelcomeMsg, (LPTSTR) WelcomeMsg,sizeof(WelcomeMsg));
+ LoadString( GetModuleHandle(NULL), STRING_PromptMsg, (LPTSTR) PromptMsg ,sizeof(PromptMsg));
AllocConsole();
SetConsoleTitleW(L"ntvdm");