Commit 50b98a29 authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard

user32: Redefine internal pop-up tracking flags to avoid conflicts.

These internal flags conflict with the Win32 API flags TPM_RECURSE, TPM_RIGHTBUTTON, and TPM_CENTERALIGN respectively, which are all stored in the same flag UINT.
parent 90b7efe2
......@@ -116,9 +116,9 @@ typedef struct {
/* internal flags for menu tracking */
#define TF_ENDMENU 0x0001
#define TF_SUSPENDPOPUP 0x0002
#define TF_SKIPREMOVE 0x0004
#define TF_ENDMENU 0x10000
#define TF_SUSPENDPOPUP 0x20000
#define TF_SKIPREMOVE 0x40000
typedef struct
{
......
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