riched32: Fix the extra window bytes count for 64-bit.

This commit is contained in:
Alexandre Julliard 2009-06-02 11:53:19 +02:00
parent 0737fc2c72
commit bf75129810
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ static BOOL RICHED32_Register(void)
wndClass.style = CS_DBLCLKS | CS_HREDRAW | CS_VREDRAW | CS_GLOBALCLASS;
wndClass.lpfnWndProc = RichEdit10ANSIWndProc;
wndClass.cbClsExtra = 0;
wndClass.cbWndExtra = 4;
wndClass.cbWndExtra = sizeof(void *);
wndClass.hCursor = LoadCursorA(0, (LPSTR)IDC_ARROW);
wndClass.hbrBackground = (HBRUSH)(COLOR_WINDOW + 1);
wndClass.lpszClassName = RICHEDIT_CLASS10A; /* WC_RICHED32A; */