shdocvw: Native RegisterClassEx requires cbSize to be set.

This commit is contained in:
Dylan Smith 2010-06-18 17:42:55 -04:00 committed by Alexandre Julliard
parent fcbc48183f
commit ec99c85531
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ void register_iewindow_class(void)
WNDCLASSEXW wc;
memset(&wc, 0, sizeof wc);
wc.cbSize = sizeof(wc);
wc.style = 0;
wc.lpfnWndProc = ie_window_proc;
wc.cbClsExtra = 0;