mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 20:50:41 +00:00
added Thomas's changes to defines.h (sorry they were taken away by my update)
svn path=/trunk/; revision=7331
This commit is contained in:
parent
b8aa4bcd37
commit
b6310a8efc
1 changed files with 19 additions and 7 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue