Commit 9890cb78 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

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

parent ff8b9336
...@@ -112,7 +112,7 @@ typedef struct tagPARAM2STR ...@@ -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])))
......
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