[1166] | 1 | /**
|
---|
| 2 | * This file has no copyright assigned and is placed in the Public Domain.
|
---|
| 3 | * This file is part of the mingw-w64 runtime package.
|
---|
| 4 | * No warranty is given; refer to the file DISCLAIMER.PD within this package.
|
---|
| 5 | */
|
---|
| 6 | #ifndef EXCHFORM_H
|
---|
| 7 | #define EXCHFORM_H
|
---|
| 8 |
|
---|
| 9 | #define EXCHIVERB_OPEN 0
|
---|
| 10 | #define EXCHIVERB_RESERVED_COMPOSE 100
|
---|
| 11 | #define EXCHIVERB_RESERVED_OPEN 101
|
---|
| 12 | #define EXCHIVERB_REPLYTOSENDER 102
|
---|
| 13 | #define EXCHIVERB_REPLYTOALL 103
|
---|
| 14 | #define EXCHIVERB_FORWARD 104
|
---|
| 15 | #define EXCHIVERB_PRINT 105
|
---|
| 16 | #define EXCHIVERB_SAVEAS 106
|
---|
| 17 | #define EXCHIVERB_RESERVED_DELIVERY 107
|
---|
| 18 | #define EXCHIVERB_REPLYTOFOLDER 108
|
---|
| 19 |
|
---|
| 20 | #define DEFINE_EXCHFORMGUID(name,b) DEFINE_GUID(name,0x00020D00 | (b),0,0,0xC0,0,0,0,0,0,0,0x46)
|
---|
| 21 |
|
---|
| 22 | #ifndef NOEXCHFORMGUIDS
|
---|
| 23 | DEFINE_EXCHFORMGUID(PS_EXCHFORM,0x0C);
|
---|
| 24 | #endif
|
---|
| 25 |
|
---|
| 26 | #define psOpMap PS_EXCHFORM
|
---|
| 27 | #define ulKindOpMap MNID_ID
|
---|
| 28 | #define lidOpMap 1
|
---|
| 29 | #define ptOpMap PT_STRING8
|
---|
| 30 |
|
---|
| 31 | #define ichOpMapReservedCompose 0
|
---|
| 32 | #define ichOpMapOpen 1
|
---|
| 33 | #define ichOpMapReplyToSender 2
|
---|
| 34 | #define ichOpMapReplyToAll 3
|
---|
| 35 | #define ichOpMapForward 4
|
---|
| 36 | #define ichOpMapPrint 5
|
---|
| 37 | #define ichOpMapSaveAs 6
|
---|
| 38 | #define ichOpMapReservedDelivery 7
|
---|
| 39 | #define ichOpMapReplyToFolder 8
|
---|
| 40 |
|
---|
| 41 | #define chOpMapByClient '0'
|
---|
| 42 | #define chOpMapByForm '1'
|
---|
| 43 | #define chOpMapDisable '2'
|
---|
| 44 | #endif
|
---|