serialui: Replace const pointer type with correct pointer to const.

This commit is contained in:
Andrew Talbot 2007-03-08 22:15:27 +00:00 committed by Alexandre Julliard
parent ff8b9336d5
commit 9890cb7884
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ typedef struct tagPARAM2STR
DWORD dwSize;
LPPARAM2STRDATA data;
} PARAM2STR, *LPPARAM2STR;
typedef const LPPARAM2STR LPCPARAM2STR;
typedef const PARAM2STR *LPCPARAM2STR;
#define SERIALUI_TABLESIZE(x) ((sizeof (x))/(sizeof (x[0])))