If I do this in my header file:
I get the error:
error: expected ':' before numeric constant
Why is this and how can I solve it?
Thanks
Code:
#define WM_USER 0x0400;
const UINT MSGID_FIRST = WM_USER + 1;
I get the error:
error: expected ':' before numeric constant
Why is this and how can I solve it?
Thanks