Removed W->A calls from FatalAppExitW.

oldstable
Stefan Leichter 2003-04-27 00:31:34 +00:00 committed by Alexandre Julliard
parent dcaf137736
commit 390a0bffcc
1 changed files with 3 additions and 1 deletions

View File

@ -513,7 +513,9 @@ void WINAPI FatalAppExitA( UINT action, LPCSTR str )
*/
void WINAPI FatalAppExitW( UINT action, LPCWSTR str )
{
HMODULE mod = GetModuleHandleA( "user32.dll" );
static const WCHAR User32DllW[] = {'u','s','e','r','3','2','.','d','l','l',0};
HMODULE mod = GetModuleHandleW( User32DllW );
MessageBoxW_funcptr pMessageBoxW = NULL;
WARN("AppExit\n");