1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

regedit: Use unsigned types for bitfields.

This commit is contained in:
Jacek Caban 2023-09-13 12:16:03 +02:00 committed by Alexandre Julliard
parent 3d50c79b64
commit 555394b79c

View file

@ -43,9 +43,9 @@ typedef struct tagHEXEDIT_INFO
{
HWND hwndSelf;
HFONT hFont;
BOOL bFocus : 1;
BOOL bFocusHex : 1; /* TRUE if focus is on hex, FALSE if focus on ASCII */
BOOL bInsert : 1; /* insert mode if TRUE, overwrite mode if FALSE */
UINT bFocus : 1;
UINT bFocusHex : 1; /* TRUE if focus is on hex, FALSE if focus on ASCII */
UINT bInsert : 1; /* insert mode if TRUE, overwrite mode if FALSE */
INT nHeight; /* height of text */
INT nCaretPos; /* caret pos in nibbles */
BYTE *pData;