serialui: Replace const pointer type with correct pointer to const.
This commit is contained in:
parent
ff8b9336d5
commit
9890cb7884
|
@ -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])))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue