home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / include / mapioid.h < prev    next >
C/C++ Source or Header  |  1998-04-25  |  3KB  |  107 lines

  1. /*
  2.  *  M A P I O I D . H
  3.  *
  4.  *  MAPI OID definition header file
  5.  *
  6.  *  Copyright 1986-1996 Microsoft Corporation. All Rights Reserved.
  7.  */
  8.  
  9. #ifndef _MAPIOID_
  10. #define _MAPIOID_
  11.  
  12. /*
  13.  *  MAPI 1.0 Object Identifiers (OID's)
  14.  *
  15.  *  All MAPI 1.0 OIDs are prefixed by the segment
  16.  *
  17.  *      {iso(1) ansi(2) usa(840) microsoft(113556) mapi(3)}
  18.  *
  19.  *  All MAPI 1.0 tags are also include the addistion segment
  20.  *
  21.  *      {tags(10)}
  22.  *
  23.  *  All MAPI 1.0 encodings are also include the addistion segment
  24.  *
  25.  *      {encodeings(11)}
  26.  *
  27.  *  The set of defined tags are as follows
  28.  *
  29.  *   {{mapiprefix} {tags} {tnef(1)}}                        MAPI 1.0 TNEF encapsulation tag
  30.  *
  31.  *   {{mapiprefix} {tags} {ole(3)}}                         MAPI 1.0 OLE prefix
  32.  *   {{mapiprefix} {tags} {ole(3)} {v1(1)}}                 MAPI 1.0 OLE 1.0 prefix
  33.  *   {{mapiprefix} {tags} {ole(3)} {v1(1)} {storage(1)}}    MAPI 1.0 OLE 1.0 OLESTREAM
  34.  *   {{mapiprefix} {tags} {ole(3)} {v2(2)}}                 MAPI 1.0 OLE 2.0 prefix
  35.  *   {{mapiprefix} {tags} {ole(3)} {v2(2)} {storage(1)}}    MAPI 1.0 OLE 2.0 IStorage
  36.  *
  37.  *  The set of defined encodings are as follows
  38.  *
  39.  *   {{mapiprefix} {encodings} {MacBinary(1)}}              MAPI 1.0 MacBinary
  40.  */
  41.  
  42. #define OID_TAG         0x0A
  43. #define OID_ENCODING    0x0B
  44.  
  45. #define DEFINE_OID_1(name, b0, b1) \
  46.     EXTERN_C const BYTE FAR * name
  47.  
  48. #define DEFINE_OID_2(name, b0, b1, b2) \
  49.     EXTERN_C const BYTE FAR * name
  50.  
  51. #define DEFINE_OID_3(name, b0, b1, b2, b3) \
  52.     EXTERN_C const BYTE FAR * name
  53.  
  54. #define DEFINE_OID_4(name, b0, b1, b2, b3, b4) \
  55.     EXTERN_C const BYTE FAR * name
  56.  
  57. #define CB_OID_1        9
  58. #define CB_OID_2        10
  59. #define CB_OID_3        11
  60. #define CB_OID_4        12
  61.  
  62. #ifdef INITOID
  63. #include <initoid.h>
  64. #endif
  65.  
  66. #ifdef  USES_OID_TNEF
  67. DEFINE_OID_1(OID_TNEF, OID_TAG, 0x01);
  68. #define CB_OID_TNEF CB_OID_1
  69. #endif
  70.  
  71. #ifdef  USES_OID_OLE
  72. DEFINE_OID_1(OID_OLE, OID_TAG, 0x03);
  73. #define CB_OID_OLE CB_OID_1
  74. #endif
  75.  
  76. #ifdef  USES_OID_OLE1
  77. DEFINE_OID_2(OID_OLE1, OID_TAG, 0x03, 0x01);
  78. #define CB_OID_OLE1 CB_OID_2
  79. #endif
  80.  
  81. #ifdef  USES_OID_OLE1_STORAGE
  82. DEFINE_OID_3(OID_OLE1_STORAGE, OID_TAG, 0x03, 0x01, 0x01);
  83. #define CB_OID_OLE1_STORAGE CB_OID_3
  84. #endif
  85.  
  86. #ifdef  USES_OID_OLE2
  87. DEFINE_OID_2(OID_OLE2, OID_TAG, 0x03, 0x02);
  88. #define CB_OID_OLE2 CB_OID_2
  89. #endif
  90.  
  91. #ifdef  USES_OID_OLE2_STORAGE
  92. DEFINE_OID_3(OID_OLE2_STORAGE, OID_TAG, 0x03, 0x02, 0x01);
  93. #define CB_OID_OLE2_STORAGE CB_OID_3
  94. #endif
  95.  
  96. #ifdef  USES_OID_MAC_BINARY
  97. DEFINE_OID_1(OID_MAC_BINARY, OID_ENCODING, 0x01);
  98. #define CB_OID_MAC_BINARY CB_OID_1
  99. #endif
  100.  
  101. #ifdef  USES_OID_MIMETAG
  102. DEFINE_OID_1(OID_MIMETAG, OID_TAG, 0x04);
  103. #define CB_OID_MIMETAG CB_OID_1
  104. #endif
  105.  
  106. #endif
  107.