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

View file

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