Skip to content

Commit a16393c

Browse files
authored
Use WPARAM and LPARAM instead of int for WinAPI message parameters (#385)
1 parent 168d9cd commit a16393c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

engine/qclib/qccgui.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1488,8 +1488,8 @@ HWND CreateAnEditControl(HWND parent, pbool *scintillaokay)
14881488
while(fgets(buf, sizeof(buf)-1, f))
14891489
{
14901490
int msg;
1491-
int lparam;
1492-
int wparam;
1491+
LPARAM lparam;
1492+
WPARAM wparam;
14931493
char *c;
14941494
buf[sizeof(buf)-1] = 0;
14951495
c = buf;

0 commit comments

Comments
 (0)