Commit 555394b7 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

regedit: Use unsigned types for bitfields.

parent 3d50c79b
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment