mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
Fix so it can compile agein
svn path=/trunk/; revision=14918
This commit is contained in:
parent
62bf02deb7
commit
832cfa1af7
1 changed files with 4 additions and 4 deletions
|
@ -276,12 +276,12 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nSho
|
|||
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");
|
||||
|
|
Loading…
Reference in a new issue