Fix icon title class descriptor for ReactOS.
authorJames Tabor <james.tabor@reactos.org>
Thu, 25 Oct 2007 12:38:15 +0000 (12:38 +0000)
committerJames Tabor <james.tabor@reactos.org>
Thu, 25 Oct 2007 12:38:15 +0000 (12:38 +0000)
svn path=/trunk/; revision=29876

reactos/dll/win32/user32/controls/icontitle.c

index 12af0b1..bacb7e8 100644 (file)
@@ -37,6 +37,15 @@ static LRESULT WINAPI IconTitleWndProc( HWND hWnd, UINT msg, WPARAM wParam, LPAR
  */
 const struct builtin_class_descr ICONTITLE_builtin_class =
 {
+#ifdef __REACTOS__
+    ICONTITLE_CLASS_ATOM, /* name */
+    0,                    /* style */
+    IconTitleWndProc,     /* procW */
+    NULL,                 /* procA (winproc is Unicode only) */
+    0,                    /* extra */
+    IDC_ARROW,            /* cursor */
+    0                     /* brush */
+#else
     ICONTITLE_CLASS_ATOM, /* name */
     0,                    /* style */
     NULL,                 /* procA (winproc is Unicode only) */
@@ -44,6 +53,7 @@ const struct builtin_class_descr ICONTITLE_builtin_class =
     0,                    /* extra */
     IDC_ARROW,            /* cursor */
     0                     /* brush */
+#endif
 };