Re: strmbase: add beginnings of BaseWindow
28 Mar
2012
28 Mar
'12
9:34 a.m.
Aric Stewart <aric(a)codeweavers.com> writes:
+HRESULT WINAPI BaseWindow_Destroy(BaseWindow *This) +{ + if (This->hWnd) + BaseWindowImpl_DoneWithWindow(This); + + UnregisterClassW(This->pClassName, NULL);
You most likely don't want to unregister the class every time.
+ wnd_class_registered = GetClassInfoW(This->hInstance, This->pClassName, + &winclass); + + if (!wnd_class_registered) + {
There shouldn't be any reason to do this. -- Alexandre Julliard julliard(a)winehq.org
5008
Age (days ago)
5008
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard