Commit 8a2cb8fe authored by Dylan Smith's avatar Dylan Smith Committed by Alexandre Julliard

winemine: Native RegisterClassEx requires cbSize to be set.

parent 3d73c466
...@@ -1015,6 +1015,7 @@ int WINAPI WinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmd ...@@ -1015,6 +1015,7 @@ int WINAPI WinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmd
LoadString( hInst, IDS_APPNAME, appname, sizeof(appname)); LoadString( hInst, IDS_APPNAME, appname, sizeof(appname));
wc.cbSize = sizeof(wc);
wc.style = 0; wc.style = 0;
wc.lpfnWndProc = MainProc; wc.lpfnWndProc = MainProc;
wc.cbClsExtra = 0; wc.cbClsExtra = 0;
......
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