added a few missing constants for TrackPopupMenu(Ex)()

svn path=/trunk/; revision=7272
This commit is contained in:
Thomas Bluemel 2003-12-27 23:19:09 +00:00
parent 5d14cf086f
commit 38ff929b3a

View file

@ -2800,13 +2800,25 @@ extern "C" {
#define SPIF_SENDCHANGE (2)
/* TrackPopupMenu, TrackPopMenuEx */
#define TPM_CENTERALIGN (0x4L)
#define TPM_LEFTALIGN (0L)
#define TPM_RIGHTALIGN (0x8L)
#define TPM_LEFTBUTTON (0L)
#define TPM_RIGHTBUTTON (0x2L)
#define TPM_HORIZONTAL (0L)
#define TPM_VERTICAL (0x40L)
#define TPM_LEFTBUTTON (0)
#define TPM_RIGHTBUTTON (2)
#define TPM_LEFTALIGN (0)
#define TPM_CENTERALIGN (4)
#define TPM_RIGHTALIGN (8)
#define TPM_TOPALIGN (0)
#define TPM_VCENTERALIGN (16)
#define TPM_BOTTOMALIGN (32)
#define TPM_HORIZONTAL (0)
#define TPM_VERTICAL (64)
#define TPM_NONOTIFY (128)
#define TPM_RETURNCMD (256)
#define TPM_RECURSE (1)
#define TPM_HORPOSANIMATION (1024)
#define TPM_HORNEGANIMATION (2048)
#define TPM_VERPOSANIMATION (4096)
#define TPM_VERNEGANIMATION (8192)
#define TPM_NOANIMATION (16384)
#define TPM_LAYOUTRTL (32768)
/* TranslateCharsetInfo */
#define TCI_SRCCHARSET (1)