mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:56:00 +00:00
- Fix wine class test with a sync with wine edit.c.
svn path=/trunk/; revision=43782
This commit is contained in:
parent
8214c072df
commit
d2d4152255
1 changed files with 4 additions and 0 deletions
|
@ -5533,7 +5533,11 @@ const struct builtin_class_descr EDIT_builtin_class =
|
||||||
CS_DBLCLKS | CS_PARENTDC, /* style */
|
CS_DBLCLKS | CS_PARENTDC, /* style */
|
||||||
EditWndProcA, /* procA */
|
EditWndProcA, /* procA */
|
||||||
EditWndProcW, /* procW */
|
EditWndProcW, /* procW */
|
||||||
|
#ifdef _WIN64
|
||||||
sizeof(EDITSTATE *), /* extra */
|
sizeof(EDITSTATE *), /* extra */
|
||||||
|
#else
|
||||||
|
sizeof(EDITSTATE *) + sizeof(WORD), /* extra */
|
||||||
|
#endif
|
||||||
IDC_IBEAM, /* cursor */
|
IDC_IBEAM, /* cursor */
|
||||||
0 /* brush */
|
0 /* brush */
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue