user: Allow creating windows of the desktop class.
diff --git a/dlls/user/desktop.c b/dlls/user/desktop.c
index 0252512..1943dbf 100644
--- a/dlls/user/desktop.c
+++ b/dlls/user/desktop.c
@@ -117,8 +117,8 @@
*/
static LRESULT WINAPI DesktopWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
{
- /* all messages are ignored */
- return 0;
+ if (message == WM_NCCREATE) return TRUE;
+ return 0; /* all other messages are ignored */
}
/***********************************************************************