Commit 390a0bff authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

Removed W->A calls from FatalAppExitW.

parent dcaf1377
...@@ -513,7 +513,9 @@ void WINAPI FatalAppExitA( UINT action, LPCSTR str ) ...@@ -513,7 +513,9 @@ void WINAPI FatalAppExitA( UINT action, LPCSTR str )
*/ */
void WINAPI FatalAppExitW( UINT action, LPCWSTR 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; MessageBoxW_funcptr pMessageBoxW = NULL;
WARN("AppExit\n"); WARN("AppExit\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment