Commit f874d20f authored by Alexandre Julliard's avatar Alexandre Julliard

user: Allow creating windows of the desktop class.

parent 70d42f9d
...@@ -117,8 +117,8 @@ static HBITMAP DESKTOP_LoadBitmap( HDC hdc, const char *filename ) ...@@ -117,8 +117,8 @@ static HBITMAP DESKTOP_LoadBitmap( HDC hdc, const char *filename )
*/ */
static LRESULT WINAPI DesktopWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam ) static LRESULT WINAPI DesktopWndProc( HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam )
{ {
/* all messages are ignored */ if (message == WM_NCCREATE) return TRUE;
return 0; return 0; /* all other messages are ignored */
} }
/*********************************************************************** /***********************************************************************
......
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