fix bug 838 (Sol.exe is missing it's menubar)
[reactos.git] / reactos / lib / user32 / controls / regcontrol.c
index 6614987..699ce5e 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: regcontrol.c,v 1.20 2004/08/15 21:36:26 chorns Exp $
+/* $Id$
  *
  * COPYRIGHT:        See COPYING in the top level directory
  * PROJECT:          ReactOS User32
@@ -9,17 +9,14 @@
  * NOTES:            Adapted from Wine
  */
 
-#include "user32.h"
-#include <wchar.h>
-#include "user32/regcontrol.h"
-#include "win32k/ntuser.h"
+#include <user32.h>
 
 static void RegisterBuiltinClass(const struct builtin_class_descr *Descr)
 {
    WNDCLASSEXW wc;
    UNICODE_STRING ClassName;
    UNICODE_STRING MenuName;
-  
+
    wc.cbSize = sizeof(WNDCLASSEXW);
    wc.lpszClassName = Descr->name;
    wc.lpfnWndProc = Descr->procW;
@@ -54,6 +51,7 @@ static void RegisterBuiltinClass(const struct builtin_class_descr *Descr)
       &MenuName,
       Descr->procA,
       REGISTERCLASS_SYSTEM,
+      0,
       0);
 }