diff options
Diffstat (limited to 'apps/FaCE/FaCE_OS.h')
-rw-r--r-- | apps/FaCE/FaCE_OS.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/FaCE/FaCE_OS.h b/apps/FaCE/FaCE_OS.h index cbb317d7338..79e0cf313ed 100644 --- a/apps/FaCE/FaCE_OS.h +++ b/apps/FaCE/FaCE_OS.h @@ -1,5 +1,4 @@ // -*- C++ -*- -// FUZZ: disable check_for_tchar //============================================================================= /** @@ -19,12 +18,12 @@ ace_main_i (int, ACE_TCHAR**); \ extern BOOL InitInstance (HINSTANCE, int); \ extern void InitSetup(); \ -int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow) \ +int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, ACE_TCHAR* lpCmdLine, int nCmdShow) \ { \ MSG msg; \ HACCEL hAccelTable; \ if (!InitInstance (hInstance, nCmdShow)) return FALSE; \ - hAccelTable = LoadAccelerators(hInstance, (LPCTSTR)IDC_FACE); \ + hAccelTable = LoadAccelerators(hInstance, (const ACE_TCHAR*)IDC_FACE); \ InitSetup(); \ while (GetMessage(&msg, NULL, 0, 0)) { \ if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg)) { \ |