- Fix wine class test with a sync with wine edit.c.

svn path=/trunk/; revision=43782
This commit is contained in:
James Tabor 2009-10-26 18:26:48 +00:00
parent 8214c072df
commit d2d4152255

View file

@ -5533,7 +5533,11 @@ const struct builtin_class_descr EDIT_builtin_class =
CS_DBLCLKS | CS_PARENTDC, /* style */
EditWndProcA, /* procA */
EditWndProcW, /* procW */
#ifdef _WIN64
sizeof(EDITSTATE *), /* extra */
#else
sizeof(EDITSTATE *) + sizeof(WORD), /* extra */
#endif
IDC_IBEAM, /* cursor */
0 /* brush */
};