shdocvw: Native RegisterClassEx requires cbSize to be set.
This commit is contained in:
parent
fcbc48183f
commit
ec99c85531
|
@ -90,6 +90,7 @@ void register_iewindow_class(void)
|
||||||
WNDCLASSEXW wc;
|
WNDCLASSEXW wc;
|
||||||
|
|
||||||
memset(&wc, 0, sizeof wc);
|
memset(&wc, 0, sizeof wc);
|
||||||
|
wc.cbSize = sizeof(wc);
|
||||||
wc.style = 0;
|
wc.style = 0;
|
||||||
wc.lpfnWndProc = ie_window_proc;
|
wc.lpfnWndProc = ie_window_proc;
|
||||||
wc.cbClsExtra = 0;
|
wc.cbClsExtra = 0;
|
||||||
|
|
Loading…
Reference in New Issue