Mq.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:65k
源码类别:

模拟服务器

开发平台:

C/C++

  1. /*++
  2. Copyright (c) 1996-2001, Microsoft Corporation
  3. Module Name:
  4.     mq.h
  5. Abstract:
  6.     Master include file for Message Queuing applications
  7. --*/
  8. #ifndef __MQ_H__
  9. #define __MQ_H__
  10. #if defined (_MSC_VER) && (_MSC_VER >= 1020)
  11. #pragma once
  12. #endif
  13. #ifndef __ITransaction_FWD_DEFINED__
  14. #define __ITransaction_FWD_DEFINED__
  15. typedef interface ITransaction ITransaction;
  16. #endif  // __ITransaction_FWD_DEFINED__
  17. #ifdef __midl
  18. // This is the PROPVARIANT definition for marshaling.
  19. typedef struct tag_inner_PROPVARIANT tagMQPROPVARIANT;
  20. #else
  21. // This is the standard C layout of the PROPVARIANT.
  22. typedef struct tagPROPVARIANT tagMQPROPVARIANT;
  23. #endif
  24. typedef tagMQPROPVARIANT MQPROPVARIANT;
  25. #define PRLT ( 0 )
  26. #define PRLE ( 1 )
  27. #define PRGT ( 2 )
  28. #define PRGE ( 3 )
  29. #define PREQ ( 4 )
  30. #define PRNE ( 5 )
  31. typedef struct tagMQPROPERTYRESTRICTION
  32.     {
  33.     ULONG rel;
  34.     PROPID prop;
  35.     MQPROPVARIANT prval;
  36.     }  MQPROPERTYRESTRICTION;
  37. typedef struct tagMQRESTRICTION
  38.     {
  39.     ULONG cRes;
  40.     /* [size_is] */ MQPROPERTYRESTRICTION *paPropRes;
  41.     }  MQRESTRICTION;
  42. typedef struct tagMQCOLUMNSET
  43.     {
  44.     ULONG cCol;
  45.     /* [size_is] */ PROPID *aCol;
  46.     }  MQCOLUMNSET;
  47. #define QUERY_SORTASCEND ( 0 )
  48. #define QUERY_SORTDESCEND ( 1 )
  49. typedef struct tagMQSORTKEY
  50.     {
  51.     PROPID propColumn;
  52.     ULONG dwOrder;
  53.     }  MQSORTKEY;
  54. typedef struct tagMQSORTSET
  55.     {
  56.     ULONG cCol;
  57.     /* [size_is] */ MQSORTKEY *aCol;
  58.     }  MQSORTSET;
  59. #define MQ_MAX_Q_NAME_LEN      124   // Maximal WCHAR length of a queue name.
  60. #define MQ_MAX_Q_LABEL_LEN     124
  61. #define MQ_MAX_MSG_LABEL_LEN   250
  62. typedef HANDLE QUEUEHANDLE;
  63. typedef PROPID MSGPROPID;
  64. typedef struct tagMQMSGPROPS
  65. {
  66.     DWORD           cProp;
  67.     MSGPROPID*      aPropID;
  68.     MQPROPVARIANT*  aPropVar;
  69.     HRESULT*        aStatus;
  70. } MQMSGPROPS;
  71. typedef PROPID QUEUEPROPID;
  72. typedef struct tagMQQUEUEPROPS
  73. {
  74.     DWORD           cProp;
  75.     QUEUEPROPID*    aPropID;
  76.     MQPROPVARIANT*  aPropVar;
  77.     HRESULT*        aStatus;
  78. } MQQUEUEPROPS;
  79. typedef PROPID QMPROPID;
  80. typedef struct tagMQQMPROPS
  81. {
  82.     DWORD           cProp;
  83.     QMPROPID*       aPropID;
  84.     MQPROPVARIANT*  aPropVar;
  85.     HRESULT*        aStatus;
  86. } MQQMPROPS;
  87. typedef struct tagMQPRIVATEPROPS
  88. {
  89.     DWORD           cProp;
  90.     QMPROPID*       aPropID;
  91.     MQPROPVARIANT*  aPropVar;
  92.     HRESULT*        aStatus;
  93. } MQPRIVATEPROPS;
  94. typedef PROPID MGMTPROPID;
  95. typedef struct tagMQMGMTPROPS
  96. {
  97.     DWORD cProp;
  98.     MGMTPROPID* aPropID;
  99.     MQPROPVARIANT* aPropVar;
  100.     HRESULT* aStatus;
  101. } MQMGMTPROPS;
  102. typedef struct tagSEQUENCE_INFO
  103. {
  104.     LONGLONG SeqID;
  105.     ULONG SeqNo; 
  106.     ULONG PrevNo;
  107. } SEQUENCE_INFO;
  108.     
  109. //********************************************************************
  110. //  API FLAGS
  111. //********************************************************************
  112. //
  113. //  MQOpenQueue - Access values
  114. //
  115. #define MQ_RECEIVE_ACCESS       0x00000001
  116. #define MQ_SEND_ACCESS          0x00000002
  117. #define MQ_PEEK_ACCESS          0x00000020
  118. #define MQ_ADMIN_ACCESS         0x00000080
  119. //
  120. //  MQOpenQueue - Share values
  121. //
  122. #define MQ_DENY_NONE            0x00000000
  123. #define MQ_DENY_RECEIVE_SHARE   0x00000001
  124. //
  125. //  MQReceiveMessage - Action values
  126. //
  127. #define MQ_ACTION_RECEIVE       0x00000000
  128. #define MQ_ACTION_PEEK_CURRENT  0x80000000
  129. #define MQ_ACTION_PEEK_NEXT     0x80000001
  130. //
  131. //  MQReceiveMessageByLookupId - Action values
  132. //
  133. #define MQ_LOOKUP_PEEK_CURRENT    0x40000010
  134. #define MQ_LOOKUP_PEEK_NEXT       0x40000011
  135. #define MQ_LOOKUP_PEEK_PREV       0x40000012
  136. #define MQ_LOOKUP_PEEK_FIRST      0x40000014
  137. #define MQ_LOOKUP_PEEK_LAST       0x40000018
  138. #define MQ_LOOKUP_RECEIVE_CURRENT 0x40000020
  139. #define MQ_LOOKUP_RECEIVE_NEXT    0x40000021
  140. #define MQ_LOOKUP_RECEIVE_PREV    0x40000022
  141. #define MQ_LOOKUP_RECEIVE_FIRST   0x40000024
  142. #define MQ_LOOKUP_RECEIVE_LAST    0x40000028
  143. //
  144. // MQSendMessage,  MQReceiveMessage:  special cases for the transaction parameter
  145. //
  146. #define MQ_NO_TRANSACTION             NULL
  147. #define MQ_MTS_TRANSACTION            (ITransaction *)1
  148. #define MQ_XA_TRANSACTION             (ITransaction *)2
  149. #define MQ_SINGLE_MESSAGE             (ITransaction *)3
  150. //********************************************************************
  151. //  PRIORITY LIMITS
  152. //********************************************************************
  153. //
  154. //  Message priorities
  155. //
  156. #define MQ_MIN_PRIORITY          0    // Minimal message priority
  157. #define MQ_MAX_PRIORITY          7    // Maximal message priority
  158. //********************************************************************
  159. //  MESSAGE PROPERTIES
  160. //********************************************************************
  161. #define PROPID_M_BASE  0
  162. #define PROPID_M_CLASS                   (PROPID_M_BASE + 1)     /* VT_UI2           */
  163. #define PROPID_M_MSGID                   (PROPID_M_BASE + 2)     /* VT_UI1|VT_VECTOR */
  164. #define PROPID_M_CORRELATIONID           (PROPID_M_BASE + 3)     /* VT_UI1|VT_VECTOR */
  165. #define PROPID_M_PRIORITY                (PROPID_M_BASE + 4)     /* VT_UI1           */
  166. #define PROPID_M_DELIVERY                (PROPID_M_BASE + 5)     /* VT_UI1           */
  167. #define PROPID_M_ACKNOWLEDGE             (PROPID_M_BASE + 6)     /* VT_UI1           */
  168. #define PROPID_M_JOURNAL                 (PROPID_M_BASE + 7)     /* VT_UI1           */
  169. #define PROPID_M_APPSPECIFIC             (PROPID_M_BASE + 8)     /* VT_UI4           */
  170. #define PROPID_M_BODY                    (PROPID_M_BASE + 9)     /* VT_UI1|VT_VECTOR */
  171. #define PROPID_M_BODY_SIZE               (PROPID_M_BASE + 10)    /* VT_UI4           */
  172. #define PROPID_M_LABEL                   (PROPID_M_BASE + 11)    /* VT_LPWSTR        */
  173. #define PROPID_M_LABEL_LEN               (PROPID_M_BASE + 12)    /* VT_UI4           */
  174. #define PROPID_M_TIME_TO_REACH_QUEUE     (PROPID_M_BASE + 13)    /* VT_UI4           */
  175. #define PROPID_M_TIME_TO_BE_RECEIVED     (PROPID_M_BASE + 14)    /* VT_UI4           */
  176. #define PROPID_M_RESP_QUEUE              (PROPID_M_BASE + 15)    /* VT_LPWSTR        */
  177. #define PROPID_M_RESP_QUEUE_LEN          (PROPID_M_BASE + 16)    /* VT_UI4           */
  178. #define PROPID_M_ADMIN_QUEUE             (PROPID_M_BASE + 17)    /* VT_LPWSTR        */
  179. #define PROPID_M_ADMIN_QUEUE_LEN         (PROPID_M_BASE + 18)    /* VT_UI4           */
  180. #define PROPID_M_VERSION                 (PROPID_M_BASE + 19)    /* VT_UI4           */
  181. #define PROPID_M_SENDERID                (PROPID_M_BASE + 20)    /* VT_UI1|VT_VECTOR */
  182. #define PROPID_M_SENDERID_LEN            (PROPID_M_BASE + 21)    /* VT_UI4           */
  183. #define PROPID_M_SENDERID_TYPE           (PROPID_M_BASE + 22)    /* VT_UI4           */
  184. #define PROPID_M_PRIV_LEVEL              (PROPID_M_BASE + 23)    /* VT_UI4           */
  185. #define PROPID_M_AUTH_LEVEL              (PROPID_M_BASE + 24)    /* VT_UI4           */
  186. #define PROPID_M_AUTHENTICATED           (PROPID_M_BASE + 25)    /* VT_UI1           */
  187. #define PROPID_M_HASH_ALG                (PROPID_M_BASE + 26)    /* VT_UI4           */
  188. #define PROPID_M_ENCRYPTION_ALG          (PROPID_M_BASE + 27)    /* VT_UI4           */
  189. #define PROPID_M_SENDER_CERT             (PROPID_M_BASE + 28)    /* VT_UI1|VT_VECTOR */
  190. #define PROPID_M_SENDER_CERT_LEN         (PROPID_M_BASE + 29)    /* VT_UI4           */
  191. #define PROPID_M_SRC_MACHINE_ID          (PROPID_M_BASE + 30)    /* VT_CLSID         */
  192. #define PROPID_M_SENTTIME                (PROPID_M_BASE + 31)    /* VT_UI4           */
  193. #define PROPID_M_ARRIVEDTIME             (PROPID_M_BASE + 32)    /* VT_UI4           */
  194. #define PROPID_M_DEST_QUEUE              (PROPID_M_BASE + 33)    /* VT_LPWSTR        */
  195. #define PROPID_M_DEST_QUEUE_LEN          (PROPID_M_BASE + 34)    /* VT_UI4           */
  196. #define PROPID_M_EXTENSION               (PROPID_M_BASE + 35)    /* VT_UI1|VT_VECTOR */
  197. #define PROPID_M_EXTENSION_LEN           (PROPID_M_BASE + 36)    /* VT_UI4           */
  198. #define PROPID_M_SECURITY_CONTEXT        (PROPID_M_BASE + 37)    /* VT_UI4           */
  199. #define PROPID_M_CONNECTOR_TYPE          (PROPID_M_BASE + 38)    /* VT_CLSID         */
  200. #define PROPID_M_XACT_STATUS_QUEUE       (PROPID_M_BASE + 39)    /* VT_LPWSTR        */
  201. #define PROPID_M_XACT_STATUS_QUEUE_LEN   (PROPID_M_BASE + 40)    /* VT_UI4           */
  202. #define PROPID_M_TRACE                   (PROPID_M_BASE + 41)    /* VT_UI1           */
  203. #define PROPID_M_BODY_TYPE               (PROPID_M_BASE + 42)    /* VT_UI4           */
  204. #define PROPID_M_DEST_SYMM_KEY           (PROPID_M_BASE + 43)    /* VT_UI1|VT_VECTOR */
  205. #define PROPID_M_DEST_SYMM_KEY_LEN       (PROPID_M_BASE + 44)    /* VT_UI4           */
  206. #define PROPID_M_SIGNATURE               (PROPID_M_BASE + 45)    /* VT_UI1|VT_VECTOR */
  207. #define PROPID_M_SIGNATURE_LEN           (PROPID_M_BASE + 46)    /* VT_UI4           */
  208. #define PROPID_M_PROV_TYPE               (PROPID_M_BASE + 47)    /* VT_UI4           */
  209. #define PROPID_M_PROV_NAME               (PROPID_M_BASE + 48)    /* VT_LPWSTR        */
  210. #define PROPID_M_PROV_NAME_LEN           (PROPID_M_BASE + 49)    /* VT_UI4           */
  211. #define PROPID_M_FIRST_IN_XACT           (PROPID_M_BASE + 50)    /* VT_UI1           */
  212. #define PROPID_M_LAST_IN_XACT            (PROPID_M_BASE + 51)    /* VT_UI1           */
  213. #define PROPID_M_XACTID                  (PROPID_M_BASE + 52)    /* VT_UI1|VT_VECTOR */
  214. #define PROPID_M_AUTHENTICATED_EX        (PROPID_M_BASE + 53)    /* VT_UI1           */
  215. #define PROPID_M_RESP_FORMAT_NAME        (PROPID_M_BASE + 54)    /* VT_LPWSTR        */
  216. #define PROPID_M_RESP_FORMAT_NAME_LEN    (PROPID_M_BASE + 55)    /* VT_UI4           */
  217. #define PROPID_M_DEST_FORMAT_NAME        (PROPID_M_BASE + 58)    /* VT_LPWSTR        */
  218. #define PROPID_M_DEST_FORMAT_NAME_LEN    (PROPID_M_BASE + 59)    /* VT_UI4           */
  219. #define PROPID_M_LOOKUPID                (PROPID_M_BASE + 60)    /* VT_UI8           */
  220. #define PROPID_M_SOAP_ENVELOPE  (PROPID_M_BASE + 61)    /* VT_LPWSTR        */
  221. #define PROPID_M_SOAP_ENVELOPE_LEN  (PROPID_M_BASE + 62)    /* VT_UI4           */
  222. #define PROPID_M_COMPOUND_MESSAGE  (PROPID_M_BASE + 63)    /* VT_UI1|VT_VECTOR */
  223. #define PROPID_M_COMPOUND_MESSAGE_SIZE  (PROPID_M_BASE + 64)    /* VT_UI4           */
  224. #define PROPID_M_SOAP_HEADER             (PROPID_M_BASE + 65)    /* VT_LPWSTR        */
  225. #define PROPID_M_SOAP_BODY               (PROPID_M_BASE + 66)    /* VT_LPWSTR        */
  226. //
  227. // Message Property Size
  228. //
  229. #define PROPID_M_MSGID_SIZE         20
  230. #define PROPID_M_CORRELATIONID_SIZE 20
  231. #define PROPID_M_XACTID_SIZE        20
  232. //********************************************************************
  233. //  MESSAGE CLASS VALUES
  234. //********************************************************************
  235. //
  236. //  Message class values are 16 bits laid out as follows:
  237. //
  238. //   1 1 1 1 1 1
  239. //   5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  240. //  +-+-+-+-------+-----------------+
  241. //  |S|R|H|Reserve|   Class code    |
  242. //  +-+-+-+-------+-----------------+
  243. //
  244. //  where
  245. //
  246. //      S - is the severity flag
  247. //          0 - Normal Message/Positive Acknowledgment (ACK)
  248. //          1 - Negative Acknowledgment (NACK)
  249. //
  250. //      R - is the receive flag
  251. //          0 - Arrival ACK/NACK
  252. //          1 - Receive ACK/NACK
  253. //
  254. //      H - is http flag
  255. //          0 - no http
  256. //          1 - http 
  257. #define MQCLASS_CODE(s, r, code) ((USHORT)(((s) << 15) | ((r) << 14) | (code)))
  258. #define MQCLASS_NACK(c)     ((c) & 0x8000)
  259. #define MQCLASS_RECEIVE(c)  ((c) & 0x4000)
  260. #define MQCLASS_NACK_HTTP(c) (((c) & 0xA000) == 0xA000)
  261. //
  262. //  Normal message
  263. //
  264. #define MQMSG_CLASS_NORMAL                      MQCLASS_CODE(0, 0, 0x00)
  265. //
  266. //  Report message
  267. //
  268. #define MQMSG_CLASS_REPORT                      MQCLASS_CODE(0, 0, 0x01)
  269. //
  270. //  Arrival acknowledgment. The message has reached its destination queue
  271. //
  272. #define MQMSG_CLASS_ACK_REACH_QUEUE             MQCLASS_CODE(0, 0, 0x02)
  273. //
  274. //  Receive acknowledgment. The message has been received by an application
  275. //
  276. #define MQMSG_CLASS_ACK_RECEIVE                 MQCLASS_CODE(0, 1, 0x00)
  277. //-----------------------------------------------
  278. //
  279. //  Negative arrival acknowledgments
  280. //
  281. //
  282. //  Destination queue cannot be reached, the queue may have been deleted
  283. //
  284. #define MQMSG_CLASS_NACK_BAD_DST_Q              MQCLASS_CODE(1, 0, 0x00)
  285. //
  286. //  The message was purged before reaching its destination queue
  287. //
  288. #define MQMSG_CLASS_NACK_PURGED                 MQCLASS_CODE(1, 0, 0x01)
  289. //
  290. //  Time to reach queue has expired
  291. //
  292. #define MQMSG_CLASS_NACK_REACH_QUEUE_TIMEOUT    MQCLASS_CODE(1, 0, 0x02)
  293. //
  294. //  The message has exceeded the queue quota
  295. //
  296. #define MQMSG_CLASS_NACK_Q_EXCEED_QUOTA         MQCLASS_CODE(1, 0, 0x03)
  297. //
  298. //  The sender does not have send access rights to the queue.
  299. //
  300. #define MQMSG_CLASS_NACK_ACCESS_DENIED          MQCLASS_CODE(1, 0, 0x04)
  301. //
  302. //  The message hop count was exceeded
  303. //
  304. #define MQMSG_CLASS_NACK_HOP_COUNT_EXCEEDED     MQCLASS_CODE(1, 0, 0x05)
  305. //
  306. //  The message signature is bad. The message could not be authenticated.
  307. //
  308. #define MQMSG_CLASS_NACK_BAD_SIGNATURE          MQCLASS_CODE(1, 0, 0x06)
  309. //
  310. //  The message could not be decrypted.
  311. //
  312. #define MQMSG_CLASS_NACK_BAD_ENCRYPTION         MQCLASS_CODE(1, 0, 0x07)
  313. //
  314. //  The message could not be encrypted for the destination.
  315. //
  316. #define MQMSG_CLASS_NACK_COULD_NOT_ENCRYPT      MQCLASS_CODE(1, 0, 0x08)
  317. //
  318. //  The message was sent to a non-transactional queue within a transaction.
  319. //
  320. #define MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_Q    MQCLASS_CODE(1, 0, 0x09)
  321. //
  322. //  The message was sent to a transactional queue not within a transaction.
  323. //
  324. #define MQMSG_CLASS_NACK_NOT_TRANSACTIONAL_MSG  MQCLASS_CODE(1, 0, 0x0A)
  325. //
  326. //  The requested crypto provider for encryption is not supported by the destination.
  327. //
  328. #define MQMSG_CLASS_NACK_UNSUPPORTED_CRYPTO_PROVIDER  MQCLASS_CODE(1, 0, 0x0B)
  329. //-----------------------------------------------
  330. //
  331. //  Negative receive acknowledgments
  332. //
  333. //
  334. //  The queue was deleted, after the message arrived
  335. //
  336. #define MQMSG_CLASS_NACK_Q_DELETED              MQCLASS_CODE(1, 1, 0x00)
  337. //
  338. //  The message was purged at the destination queue
  339. //
  340. #define MQMSG_CLASS_NACK_Q_PURGED               MQCLASS_CODE(1, 1, 0x01)
  341. //
  342. //  Time to receive has expired while the message was still in its destination queue
  343. //  (generated by destination)
  344. //
  345. #define MQMSG_CLASS_NACK_RECEIVE_TIMEOUT        MQCLASS_CODE(1, 1, 0x02)
  346. //
  347. //  Time to receive has expired while the message was still in its local outgoing queue
  348. //  (generated locally by sender)
  349. //
  350. #define MQMSG_CLASS_NACK_RECEIVE_TIMEOUT_AT_SENDER  MQCLASS_CODE(1, 1, 0x03)
  351. //------ PROPID_M_ACKNOWLEDGE ---------------
  352. #define MQMSG_ACKNOWLEDGMENT_NONE           0x00
  353. #define MQMSG_ACKNOWLEDGMENT_POS_ARRIVAL    0x01
  354. #define MQMSG_ACKNOWLEDGMENT_POS_RECEIVE    0x02
  355. #define MQMSG_ACKNOWLEDGMENT_NEG_ARRIVAL    0x04
  356. #define MQMSG_ACKNOWLEDGMENT_NEG_RECEIVE    0x08
  357. #define MQMSG_ACKNOWLEDGMENT_NACK_REACH_QUEUE ((UCHAR)( 
  358.             MQMSG_ACKNOWLEDGMENT_NEG_ARRIVAL ))
  359. #define MQMSG_ACKNOWLEDGMENT_FULL_REACH_QUEUE ((UCHAR)( 
  360.             MQMSG_ACKNOWLEDGMENT_NEG_ARRIVAL |  
  361.             MQMSG_ACKNOWLEDGMENT_POS_ARRIVAL ))
  362. #define MQMSG_ACKNOWLEDGMENT_NACK_RECEIVE ((UCHAR)( 
  363.             MQMSG_ACKNOWLEDGMENT_NEG_ARRIVAL |  
  364.             MQMSG_ACKNOWLEDGMENT_NEG_RECEIVE ))
  365. #define MQMSG_ACKNOWLEDGMENT_FULL_RECEIVE ((UCHAR)( 
  366.             MQMSG_ACKNOWLEDGMENT_NEG_ARRIVAL |  
  367.             MQMSG_ACKNOWLEDGMENT_NEG_RECEIVE |  
  368.             MQMSG_ACKNOWLEDGMENT_POS_RECEIVE ))
  369. //------ PROPID_M_DELIVERY ------------------
  370. #define MQMSG_DELIVERY_EXPRESS              0
  371. #define MQMSG_DELIVERY_RECOVERABLE          1
  372. //----- PROPID_M_JOURNAL --------------------
  373. #define MQMSG_JOURNAL_NONE                  0
  374. #define MQMSG_DEADLETTER                    1
  375. #define MQMSG_JOURNAL                       2
  376. //----- PROPID_M_TRACE ----------------------
  377. #define MQMSG_TRACE_NONE                    0
  378. #define MQMSG_SEND_ROUTE_TO_REPORT_QUEUE    1
  379. //----- PROPID_M_SENDERID_TYPE --------------
  380. #define MQMSG_SENDERID_TYPE_NONE            0
  381. #define MQMSG_SENDERID_TYPE_SID             1
  382. //----- PROPID_M_PRIV_LEVEL -----------------
  383. #define MQMSG_PRIV_LEVEL_NONE               0
  384. #define MQMSG_PRIV_LEVEL_BODY               0x01
  385. #define MQMSG_PRIV_LEVEL_BODY_BASE          0x01
  386. #define MQMSG_PRIV_LEVEL_BODY_ENHANCED      0x03
  387. //----- PROPID_M_AUTH_LEVEL -----------------
  388. #define MQMSG_AUTH_LEVEL_NONE 0
  389. #define MQMSG_AUTH_LEVEL_ALWAYS 1
  390. //
  391. // MQMSG_AUTH_LEVEL_MSMQxx are obsolete 
  392. // you should use MQMSG_AUTH_LEVEL_SIGxx
  393. //
  394. #define MQMSG_AUTH_LEVEL_MSMQ10 2
  395. #define MQMSG_AUTH_LEVEL_MSMQ20 4
  396. #define MQMSG_AUTH_LEVEL_SIG10  2
  397. #define MQMSG_AUTH_LEVEL_SIG20  4
  398. #define MQMSG_AUTH_LEVEL_SIG30  8
  399. //----- PROPID_M_AUTHENTICATED -----------------
  400. //----- PROPID_M_AUTHENTICATED_EX --------------
  401. #define MQMSG_AUTHENTICATION_NOT_REQUESTED  0
  402. #define MQMSG_AUTHENTICATION_REQUESTED      1
  403. //
  404. // MQMSG_AUTHENTICATION_REQUESTED_EX is obsolete 
  405. // use the values MQMSG_AUTHENTICATED_SIGxx
  406. // for PROPID_M_AUTHENTICATED_EX
  407. //
  408. #define MQMSG_AUTHENTICATION_REQUESTED_EX   3
  409. #define MQMSG_AUTHENTICATED_SIG10 1
  410. #define MQMSG_AUTHENTICATED_SIG20 3
  411. #define MQMSG_AUTHENTICATED_SIG30 5
  412. #define MQMSG_AUTHENTICATED_SIGXML 9
  413. //----- PROPID_M_FIRST_IN_XACT --------------
  414. #define MQMSG_NOT_FIRST_IN_XACT             0
  415. #define MQMSG_FIRST_IN_XACT                 1
  416. //----- PROPID_M_LAST_IN_XACT  --------------
  417. #define MQMSG_NOT_LAST_IN_XACT              0
  418. #define MQMSG_LAST_IN_XACT                  1
  419. //********************************************************************
  420. //  QUEUE PROPERTIES
  421. //********************************************************************
  422. #define PROPID_Q_BASE           100
  423. #define PROPID_Q_INSTANCE       (PROPID_Q_BASE +  1)  /* VT_CLSID     */
  424. #define PROPID_Q_TYPE           (PROPID_Q_BASE +  2)  /* VT_CLSID     */
  425. #define PROPID_Q_PATHNAME       (PROPID_Q_BASE +  3)  /* VT_LPWSTR    */
  426. #define PROPID_Q_JOURNAL        (PROPID_Q_BASE +  4)  /* VT_UI1       */
  427. #define PROPID_Q_QUOTA          (PROPID_Q_BASE +  5)  /* VT_UI4       */
  428. #define PROPID_Q_BASEPRIORITY   (PROPID_Q_BASE +  6)  /* VT_I2        */
  429. #define PROPID_Q_JOURNAL_QUOTA  (PROPID_Q_BASE +  7)  /* VT_UI4       */
  430. #define PROPID_Q_LABEL          (PROPID_Q_BASE +  8)  /* VT_LPWSTR    */
  431. #define PROPID_Q_CREATE_TIME    (PROPID_Q_BASE +  9)  /* VT_I4        */
  432. #define PROPID_Q_MODIFY_TIME    (PROPID_Q_BASE + 10)  /* VT_I4        */
  433. #define PROPID_Q_AUTHENTICATE   (PROPID_Q_BASE + 11)  /* VT_UI1       */
  434. #define PROPID_Q_PRIV_LEVEL     (PROPID_Q_BASE + 12)  /* VT_UI4       */
  435. #define PROPID_Q_TRANSACTION    (PROPID_Q_BASE + 13)  /* VT_UI1       */
  436. #define PROPID_Q_PATHNAME_DNS  (PROPID_Q_BASE + 24)  /* VT_LPWSTR    */
  437. #define PROPID_Q_MULTICAST_ADDRESS (PROPID_Q_BASE + 25)  /* VT_LPWSTR */
  438. #define PROPID_Q_ADS_PATH      (PROPID_Q_BASE + 26)  /* VT_LPWSTR    */
  439. //----- PROPID_Q_JOURNAL ------------------
  440. #define MQ_JOURNAL_NONE     (unsigned char)0
  441. #define MQ_JOURNAL          (unsigned char)1
  442. //----- PROPID_Q_TYPE ------------------
  443. //  {55EE8F32-CCE9-11cf-B108-0020AFD61CE9}
  444. #define MQ_QTYPE_REPORT {0x55ee8f32, 0xcce9, 0x11cf, 
  445.                         {0xb1, 0x8, 0x0, 0x20, 0xaf, 0xd6, 0x1c, 0xe9}}
  446. //  {55EE8F33-CCE9-11cf-B108-0020AFD61CE9}
  447. #define MQ_QTYPE_TEST   {0x55ee8f33, 0xcce9, 0x11cf, 
  448.                         {0xb1, 0x8, 0x0, 0x20, 0xaf, 0xd6, 0x1c, 0xe9}}
  449. //----- PROPID_Q_TRANSACTION ------------------
  450. #define MQ_TRANSACTIONAL_NONE     (unsigned char)0
  451. #define MQ_TRANSACTIONAL          (unsigned char)1
  452. //----- PROPID_Q_AUTHENTICATE ------------------
  453. #define MQ_AUTHENTICATE_NONE      (unsigned char)0
  454. #define MQ_AUTHENTICATE           (unsigned char)1
  455. //----- PROPID_Q_PRIV_LEVEL ------------------
  456. #define MQ_PRIV_LEVEL_NONE        (unsigned long)0
  457. #define MQ_PRIV_LEVEL_OPTIONAL    (unsigned long)1
  458. #define MQ_PRIV_LEVEL_BODY        (unsigned long)2
  459. //********************************************************************
  460. //  MACHINE PROPERTIES
  461. //********************************************************************
  462. #define PROPID_QM_BASE 200
  463. #define PROPID_QM_SITE_ID                   (PROPID_QM_BASE +  1) /* VT_CLSID            */
  464. #define PROPID_QM_MACHINE_ID                (PROPID_QM_BASE +  2) /* VT_CLSID            */
  465. #define PROPID_QM_PATHNAME                  (PROPID_QM_BASE +  3) /* VT_LPWSTR           */
  466. #define PROPID_QM_CONNECTION                (PROPID_QM_BASE +  4) /* VT_LPWSTR|VT_VECTOR */
  467. #define PROPID_QM_ENCRYPTION_PK             (PROPID_QM_BASE +  5) /* VT_UI1|VT_VECTOR  */
  468. #define PROPID_QM_ENCRYPTION_PK_BASE        (PROPID_QM_BASE + 31)  /* VT_UI1|VT_VECTOR  */
  469. #define PROPID_QM_ENCRYPTION_PK_ENHANCED    (PROPID_QM_BASE + 32)  /* VT_UI1|VT_VECTOR  */
  470. #define PROPID_QM_PATHNAME_DNS              (PROPID_QM_BASE + 33)  /* VT_LPWSTR         */
  471. //********************************************************************
  472. //  PRIVATE COMPUTER PROPERTIES
  473. //********************************************************************
  474. #define PROPID_PC_BASE 5800
  475. #define PROPID_PC_VERSION             (PROPID_PC_BASE + 1) /* VT_UI4            */
  476. #define PROPID_PC_DS_ENABLED          (PROPID_PC_BASE + 2) /* VT_BOOL           */
  477. //********************************************************************
  478. //  LOCAL ADMIN MSMQ MACHINE PROPERTIES
  479. //********************************************************************
  480. #define PROPID_MGMT_MSMQ_BASE           0
  481. #define PROPID_MGMT_MSMQ_ACTIVEQUEUES   (PROPID_MGMT_MSMQ_BASE + 1) /* VT_LPWSTR | VT_VECTOR  */
  482. #define PROPID_MGMT_MSMQ_PRIVATEQ       (PROPID_MGMT_MSMQ_BASE + 2) /* VT_LPWSTR | VT_VECTOR  */
  483. #define PROPID_MGMT_MSMQ_DSSERVER       (PROPID_MGMT_MSMQ_BASE + 3) /* VT_LPWSTR */
  484. #define PROPID_MGMT_MSMQ_CONNECTED      (PROPID_MGMT_MSMQ_BASE + 4) /* VT_LPWSTR */
  485. #define PROPID_MGMT_MSMQ_TYPE           (PROPID_MGMT_MSMQ_BASE + 5) /* VT_LPWSTR */
  486. #define PROPID_MGMT_MSMQ_BYTES_IN_ALL_QUEUES (PROPID_MGMT_QUEUE_BASE + 6)    /* VT_UI8    */
  487. //
  488. // Returned Value for PROPID_MGMT_MSMQ_CONNECTED property
  489. //
  490. #define MSMQ_CONNECTED      L"CONNECTED"
  491. #define MSMQ_DISCONNECTED   L"DISCONNECTED"
  492. //********************************************************************
  493. //  LOCAL ADMIN MSMQ QUEUE PROPERTIES
  494. //********************************************************************
  495. #define PROPID_MGMT_QUEUE_BASE                  0
  496. #define PROPID_MGMT_QUEUE_PATHNAME              (PROPID_MGMT_QUEUE_BASE + 1)    /* VT_LPWSTR */
  497. #define PROPID_MGMT_QUEUE_FORMATNAME            (PROPID_MGMT_QUEUE_BASE + 2)    /* VT_LPWSTR */
  498. #define PROPID_MGMT_QUEUE_TYPE                  (PROPID_MGMT_QUEUE_BASE + 3)    /* VT_LPWSTR */
  499. #define PROPID_MGMT_QUEUE_LOCATION              (PROPID_MGMT_QUEUE_BASE + 4)    /* VT_LPWSTR */
  500. #define PROPID_MGMT_QUEUE_XACT                  (PROPID_MGMT_QUEUE_BASE + 5)    /* VT_LPWSTR */
  501. #define PROPID_MGMT_QUEUE_FOREIGN               (PROPID_MGMT_QUEUE_BASE + 6)    /* VT_LPWSTR */
  502. #define PROPID_MGMT_QUEUE_MESSAGE_COUNT         (PROPID_MGMT_QUEUE_BASE + 7)    /* VT_UI4    */
  503. #define PROPID_MGMT_QUEUE_BYTES_IN_QUEUE        (PROPID_MGMT_QUEUE_BASE + 8)    /* VT_UI4    */
  504. #define PROPID_MGMT_QUEUE_JOURNAL_MESSAGE_COUNT (PROPID_MGMT_QUEUE_BASE + 9)    /* VT_UI4    */
  505. #define PROPID_MGMT_QUEUE_BYTES_IN_JOURNAL      (PROPID_MGMT_QUEUE_BASE + 10)   /* VT_UI4    */
  506. #define PROPID_MGMT_QUEUE_STATE                 (PROPID_MGMT_QUEUE_BASE + 11)   /* VT_LPWSTR */
  507. #define PROPID_MGMT_QUEUE_NEXTHOPS              (PROPID_MGMT_QUEUE_BASE + 12)   /* VT_LPWSTR|VT_VECTOR  */
  508. #define PROPID_MGMT_QUEUE_EOD_LAST_ACK          (PROPID_MGMT_QUEUE_BASE + 13)   /* VT_BLOB   */
  509. #define PROPID_MGMT_QUEUE_EOD_LAST_ACK_TIME     (PROPID_MGMT_QUEUE_BASE + 14)   /* VT_I4     */
  510. #define PROPID_MGMT_QUEUE_EOD_LAST_ACK_COUNT    (PROPID_MGMT_QUEUE_BASE + 15)   /* VT_UI4    */
  511. #define PROPID_MGMT_QUEUE_EOD_FIRST_NON_ACK     (PROPID_MGMT_QUEUE_BASE + 16)   /* VT_BLOB   */
  512. #define PROPID_MGMT_QUEUE_EOD_LAST_NON_ACK      (PROPID_MGMT_QUEUE_BASE + 17)   /* VT_BLOB   */
  513. #define PROPID_MGMT_QUEUE_EOD_NEXT_SEQ          (PROPID_MGMT_QUEUE_BASE + 18)   /* VT_BLOB   */
  514. #define PROPID_MGMT_QUEUE_EOD_NO_READ_COUNT     (PROPID_MGMT_QUEUE_BASE + 19)   /* VT_UI4    */
  515. #define PROPID_MGMT_QUEUE_EOD_NO_ACK_COUNT      (PROPID_MGMT_QUEUE_BASE + 20)   /* VT_UI4    */
  516. #define PROPID_MGMT_QUEUE_EOD_RESEND_TIME       (PROPID_MGMT_QUEUE_BASE + 21)   /* VT_I4     */
  517. #define PROPID_MGMT_QUEUE_EOD_RESEND_INTERVAL   (PROPID_MGMT_QUEUE_BASE + 22)   /* VT_UI4    */
  518. #define PROPID_MGMT_QUEUE_EOD_RESEND_COUNT      (PROPID_MGMT_QUEUE_BASE + 23)   /* VT_UI4    */
  519. #define PROPID_MGMT_QUEUE_EOD_SOURCE_INFO       (PROPID_MGMT_QUEUE_BASE + 24)   /* VT_VARIANT|VT_VECTOR */
  520. //
  521. // Olbselete alternative names for "Bytes in ..."
  522. //
  523. #define PROPID_MGMT_QUEUE_USED_QUOTA            PROPID_MGMT_QUEUE_BYTES_IN_QUEUE          
  524. #define PROPID_MGMT_QUEUE_JOURNAL_USED_QUOTA    PROPID_MGMT_QUEUE_BYTES_IN_JOURNAL        
  525. //
  526. // Returned value for PROPID_MGMT_QUEUE_TYPE
  527. //
  528. #define MGMT_QUEUE_TYPE_PUBLIC      L"PUBLIC"
  529. #define MGMT_QUEUE_TYPE_PRIVATE     L"PRIVATE"
  530. #define MGMT_QUEUE_TYPE_MACHINE     L"MACHINE"
  531. #define MGMT_QUEUE_TYPE_CONNECTOR   L"CONNECTOR"
  532. #define MGMT_QUEUE_TYPE_MULTICAST   L"MULTICAST"
  533. //
  534. // Returned value for PROPID_MGMT_QUEUE_STATE
  535. //
  536. #define MGMT_QUEUE_STATE_LOCAL          L"LOCAL CONNECTION"
  537. #define MGMT_QUEUE_STATE_NONACTIVE      L"INACTIVE"
  538. #define MGMT_QUEUE_STATE_WAITING        L"WAITING"
  539. #define MGMT_QUEUE_STATE_NEED_VALIDATE  L"NEED VALIDATION"
  540. #define MGMT_QUEUE_STATE_ONHOLD         L"ONHOLD"
  541. #define MGMT_QUEUE_STATE_CONNECTED      L"CONNECTED"
  542. #define MGMT_QUEUE_STATE_DISCONNECTING  L"DISCONNECTING"
  543. #define MGMT_QUEUE_STATE_DISCONNECTED   L"DISCONNECTED"
  544. //
  545. // Returned value for PROPID_MGMT_QUEUE_LOCATION
  546. //
  547. #define MGMT_QUEUE_LOCAL_LOCATION   L"LOCAL"
  548. #define MGMT_QUEUE_REMOTE_LOCATION  L"REMOTE"
  549. // 
  550. // Returned Value for PROPID_MGMT_QUEUE_XACT and PROPID_MGMT_QUEUE_FOREIGN
  551. //
  552. #define MGMT_QUEUE_UNKNOWN_TYPE     L"UNKNOWN"
  553. //
  554. // Obselete names left for backword compatibility.
  555. //
  556. #define MGMT_QUEUE_CORRECT_TYPE     L"YES"
  557. #define MGMT_QUEUE_INCORRECT_TYPE   L"NO"
  558. //
  559. // Names for Returned Value for PROPID_MGMT_QUEUE_XACT 
  560. //
  561. //#define MGMT_QUEUE_UNKNOWN_TYPE      L"UNKNOWN"
  562. #define MGMT_QUEUE_TRANSACTIONAL_TYPE   L"YES"
  563. #define MGMT_QUEUE_NOT_TRANSACTIONAL_TYPE   L"NO"
  564. //
  565. // Names for Returned Value for PROPID_MGMT_QUEUE_FOREIGN
  566. //
  567. //#define MGMT_QUEUE_UNKNOWN_TYPE      L"UNKNOWN"
  568. #define MGMT_QUEUE_FOREIGN_TYPE         L"YES"
  569. #define MGMT_QUEUE_NOT_FOREIGN_TYPE     L"NO"
  570. //
  571. // Object parameter values for MQMgmtAction API
  572. //
  573. #define MO_MACHINE_TOKEN    L"MACHINE"
  574. #define MO_QUEUE_TOKEN      L"QUEUE"
  575. //
  576. // Action parameter values for MQMgmtAction API
  577. //
  578. #define MACHINE_ACTION_CONNECT      L"CONNECT"
  579. #define MACHINE_ACTION_DISCONNECT   L"DISCONNECT"
  580. #define MACHINE_ACTION_TIDY         L"TIDY"
  581. #define QUEUE_ACTION_PAUSE      L"PAUSE"
  582. #define QUEUE_ACTION_RESUME     L"RESUME"
  583. #define QUEUE_ACTION_EOD_RESEND L"EOD_RESEND"
  584. //
  585. // LONG_LIVED is the default for PROPID_M_TIME_TO_REACH_QUEUE. If calls
  586. // to MQSendMessage() specify this value, or not specify this property at
  587. // all, then the actual timeout is obtained from Active Directory.
  588. //
  589. #define LONG_LIVED    0xfffffffe
  590. //
  591. // Success
  592. //
  593. #define MQ_OK                       0L
  594. #ifndef FACILITY_MSMQ
  595. #define FACILITY_MSMQ               0x0E
  596. #endif
  597. //
  598. //  Error
  599. //
  600. //
  601. //  Values are 32 bit values layed out as follows:
  602. //
  603. //   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
  604. //   1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
  605. //  +---+-+-+-----------------------+-------------------------------+
  606. //  |Sev|C|R|     Facility          |               Code            |
  607. //  +---+-+-+-----------------------+-------------------------------+
  608. //
  609. //  where
  610. //
  611. //      Sev - is the severity code
  612. //
  613. //          00 - Success
  614. //          01 - Informational
  615. //          10 - Warning
  616. //          11 - Error
  617. //
  618. //      C - is the Customer code flag
  619. //
  620. //      R - is a reserved bit
  621. //
  622. //      Facility - is the facility code
  623. //
  624. //      Code - is the facility's status code
  625. //
  626. //
  627. // Define the facility codes
  628. //
  629. //
  630. // Define the severity codes
  631. //
  632. //
  633. // MessageId: MQ_ERROR
  634. //
  635. // MessageText:
  636. //
  637. //  Generic error code.
  638. //
  639. #define MQ_ERROR                         0xC00E0001L
  640. //
  641. // MessageId: MQ_ERROR_PROPERTY
  642. //
  643. // MessageText:
  644. //
  645. //  One or more of the properties passed are invalid.
  646. //
  647. #define MQ_ERROR_PROPERTY                0xC00E0002L
  648. //
  649. // MessageId: MQ_ERROR_QUEUE_NOT_FOUND
  650. //
  651. // MessageText:
  652. //
  653. //  The queue does not exist, or you do not have sufficient permissions to perform the operation.
  654. //
  655. #define MQ_ERROR_QUEUE_NOT_FOUND         0xC00E0003L
  656. //
  657. // MessageId: MQ_ERROR_QUEUE_EXISTS
  658. //
  659. // MessageText:
  660. //
  661. //  A queue with the same path name already exists.
  662. //
  663. #define MQ_ERROR_QUEUE_EXISTS            0xC00E0005L
  664. //
  665. // MessageId: MQ_ERROR_INVALID_PARAMETER
  666. //
  667. // MessageText:
  668. //
  669. //  An invalid parameter was passed to a function.
  670. //
  671. #define MQ_ERROR_INVALID_PARAMETER       0xC00E0006L
  672. //
  673. // MessageId: MQ_ERROR_INVALID_HANDLE
  674. //
  675. // MessageText:
  676. //
  677. //  An invalid handle was passed to a function.
  678. //
  679. #define MQ_ERROR_INVALID_HANDLE          0xC00E0007L
  680. //
  681. // MessageId: MQ_ERROR_OPERATION_CANCELLED
  682. //
  683. // MessageText:
  684. //
  685. //  The operation was canceled before it could be completed.
  686. //
  687. #define MQ_ERROR_OPERATION_CANCELLED     0xC00E0008L
  688. //
  689. // MessageId: MQ_ERROR_SHARING_VIOLATION
  690. //
  691. // MessageText:
  692. //
  693. //  There is a sharing violation. The queue is already open for exclusive retrieval.
  694. //
  695. #define MQ_ERROR_SHARING_VIOLATION       0xC00E0009L
  696. //
  697. // MessageId: MQ_ERROR_SERVICE_NOT_AVAILABLE
  698. //
  699. // MessageText:
  700. //
  701. //  The Message Queuing service is not available
  702. //
  703. #define MQ_ERROR_SERVICE_NOT_AVAILABLE   0xC00E000BL
  704. //
  705. // MessageId: MQ_ERROR_MACHINE_NOT_FOUND
  706. //
  707. // MessageText:
  708. //
  709. //  The computer specified cannot be found.
  710. //
  711. #define MQ_ERROR_MACHINE_NOT_FOUND       0xC00E000DL
  712. //
  713. // MessageId: MQ_ERROR_ILLEGAL_SORT
  714. //
  715. // MessageText:
  716. //
  717. //  The sort operation specified in MQLocateBegin is invalid (for example, there are duplicate columns).
  718. //
  719. #define MQ_ERROR_ILLEGAL_SORT            0xC00E0010L
  720. //
  721. // MessageId: MQ_ERROR_ILLEGAL_USER
  722. //
  723. // MessageText:
  724. //
  725. //  The user specified is not a valid user.
  726. //
  727. #define MQ_ERROR_ILLEGAL_USER            0xC00E0011L
  728. //
  729. // MessageId: MQ_ERROR_NO_DS
  730. //
  731. // MessageText:
  732. //
  733. //  A connection with Active Directory cannot be established. Verify that there are sufficient permissions to perform this operation.
  734. //
  735. #define MQ_ERROR_NO_DS                   0xC00E0013L
  736. //
  737. // MessageId: MQ_ERROR_ILLEGAL_QUEUE_PATHNAME
  738. //
  739. // MessageText:
  740. //
  741. //  The queue path name specified is invalid.
  742. //
  743. #define MQ_ERROR_ILLEGAL_QUEUE_PATHNAME  0xC00E0014L
  744. //
  745. // MessageId: MQ_ERROR_ILLEGAL_PROPERTY_VALUE
  746. //
  747. // MessageText:
  748. //
  749. //  The property value specified is invalid.
  750. //
  751. #define MQ_ERROR_ILLEGAL_PROPERTY_VALUE  0xC00E0018L
  752. //
  753. // MessageId: MQ_ERROR_ILLEGAL_PROPERTY_VT
  754. //
  755. // MessageText:
  756. //
  757. //  The VARTYPE value specified is invalid.
  758. //
  759. #define MQ_ERROR_ILLEGAL_PROPERTY_VT     0xC00E0019L
  760. //
  761. // MessageId: MQ_ERROR_BUFFER_OVERFLOW
  762. //
  763. // MessageText:
  764. //
  765. //  The buffer supplied to MQReceiveMessage for message property retrieval
  766. //  is too small. The message was not removed from the queue, but the part
  767. //  of the message property that was in the buffer was copied.
  768. //
  769. #define MQ_ERROR_BUFFER_OVERFLOW         0xC00E001AL
  770. //
  771. // MessageId: MQ_ERROR_IO_TIMEOUT
  772. //
  773. // MessageText:
  774. //
  775. //  The time specified for MQReceiveMessage to wait for the message elapsed.
  776. //
  777. #define MQ_ERROR_IO_TIMEOUT              0xC00E001BL
  778. //
  779. // MessageId: MQ_ERROR_ILLEGAL_CURSOR_ACTION
  780. //
  781. // MessageText:
  782. //
  783. //  The MQ_ACTION_PEEK_NEXT value specified for MQReceiveMessage cannot be used with
  784. //  the current cursor position.
  785. //
  786. #define MQ_ERROR_ILLEGAL_CURSOR_ACTION   0xC00E001CL
  787. //
  788. // MessageId: MQ_ERROR_MESSAGE_ALREADY_RECEIVED
  789. //
  790. // MessageText:
  791. //
  792. //  The message at which the cursor is currently pointing was removed from
  793. //  the queue by another process or by another call to MQReceiveMessage
  794. //  without the use of this cursor.
  795. //
  796. #define MQ_ERROR_MESSAGE_ALREADY_RECEIVED 0xC00E001DL
  797. //
  798. // MessageId: MQ_ERROR_ILLEGAL_FORMATNAME
  799. //
  800. // MessageText:
  801. //
  802. //  The format name specified is invalid.
  803. //
  804. #define MQ_ERROR_ILLEGAL_FORMATNAME      0xC00E001EL
  805. //
  806. // MessageId: MQ_ERROR_FORMATNAME_BUFFER_TOO_SMALL
  807. //
  808. // MessageText:
  809. //
  810. //  The format name buffer supplied to the API was too small
  811. //  to hold the format name.
  812. //
  813. #define MQ_ERROR_FORMATNAME_BUFFER_TOO_SMALL 0xC00E001FL
  814. //
  815. // MessageId: MQ_ERROR_UNSUPPORTED_FORMATNAME_OPERATION
  816. //
  817. // MessageText:
  818. //
  819. //  Operations of the type requested (for example, deleting a queue using a direct format name)
  820. //  are not supported for the format name specified.
  821. //
  822. #define MQ_ERROR_UNSUPPORTED_FORMATNAME_OPERATION 0xC00E0020L
  823. //
  824. // MessageId: MQ_ERROR_ILLEGAL_SECURITY_DESCRIPTOR
  825. //
  826. // MessageText:
  827. //
  828. //  The specified security descriptor is invalid.
  829. //
  830. #define MQ_ERROR_ILLEGAL_SECURITY_DESCRIPTOR 0xC00E0021L
  831. //
  832. // MessageId: MQ_ERROR_SENDERID_BUFFER_TOO_SMALL
  833. //
  834. // MessageText:
  835. //
  836. //  The size of the buffer for the user ID property is too small.
  837. //
  838. #define MQ_ERROR_SENDERID_BUFFER_TOO_SMALL 0xC00E0022L
  839. //
  840. // MessageId: MQ_ERROR_SECURITY_DESCRIPTOR_TOO_SMALL
  841. //
  842. // MessageText:
  843. //
  844. //  The size of the buffer passed to MQGetQueueSecurity is too small.
  845. //
  846. #define MQ_ERROR_SECURITY_DESCRIPTOR_TOO_SMALL 0xC00E0023L
  847. //
  848. // MessageId: MQ_ERROR_CANNOT_IMPERSONATE_CLIENT
  849. //
  850. // MessageText:
  851. //
  852. //  The security credentials cannot be verified because the RPC server
  853. //  cannot impersonate the client application.
  854. //
  855. #define MQ_ERROR_CANNOT_IMPERSONATE_CLIENT 0xC00E0024L
  856. //
  857. // MessageId: MQ_ERROR_ACCESS_DENIED
  858. //
  859. // MessageText:
  860. //
  861. //  Access is denied.
  862. //
  863. #define MQ_ERROR_ACCESS_DENIED           0xC00E0025L
  864. //
  865. // MessageId: MQ_ERROR_PRIVILEGE_NOT_HELD
  866. //
  867. // MessageText:
  868. //
  869. //  The client does not have sufficient security privileges to perform the operation.
  870. //
  871. #define MQ_ERROR_PRIVILEGE_NOT_HELD      0xC00E0026L
  872. //
  873. // MessageId: MQ_ERROR_INSUFFICIENT_RESOURCES
  874. //
  875. // MessageText:
  876. //
  877. //  There are insufficient resources to perform this operation.
  878. //
  879. #define MQ_ERROR_INSUFFICIENT_RESOURCES  0xC00E0027L
  880. //
  881. // MessageId: MQ_ERROR_USER_BUFFER_TOO_SMALL
  882. //
  883. // MessageText:
  884. //
  885. //  The request failed because the user buffer is too small to hold the information returned.
  886. //
  887. #define MQ_ERROR_USER_BUFFER_TOO_SMALL   0xC00E0028L
  888. //
  889. // MessageId: MQ_ERROR_MESSAGE_STORAGE_FAILED
  890. //
  891. // MessageText:
  892. //
  893. //  A recoverable or journal message could not be stored. The message was not sent.
  894. //
  895. #define MQ_ERROR_MESSAGE_STORAGE_FAILED  0xC00E002AL
  896. //
  897. // MessageId: MQ_ERROR_SENDER_CERT_BUFFER_TOO_SMALL
  898. //
  899. // MessageText:
  900. //
  901. //  The buffer for the user certificate property is too small.
  902. //
  903. #define MQ_ERROR_SENDER_CERT_BUFFER_TOO_SMALL 0xC00E002BL
  904. //
  905. // MessageId: MQ_ERROR_INVALID_CERTIFICATE
  906. //
  907. // MessageText:
  908. //
  909. //  The user certificate is invalid.
  910. //
  911. #define MQ_ERROR_INVALID_CERTIFICATE     0xC00E002CL
  912. //
  913. // MessageId: MQ_ERROR_CORRUPTED_INTERNAL_CERTIFICATE
  914. //
  915. // MessageText:
  916. //
  917. //  The internal Message Queuing certificate is corrupted.
  918. //
  919. #define MQ_ERROR_CORRUPTED_INTERNAL_CERTIFICATE 0xC00E002DL
  920. //
  921. // MessageId: MQ_ERROR_NO_INTERNAL_USER_CERT
  922. //
  923. // MessageText:
  924. //
  925. //  No internal Message Queuing certificate exists for the user.
  926. //
  927. #define MQ_ERROR_NO_INTERNAL_USER_CERT   0xC00E002FL
  928. //
  929. // MessageId: MQ_ERROR_CORRUPTED_SECURITY_DATA
  930. //
  931. // MessageText:
  932. //
  933. //  A cryptographic function failed.
  934. //
  935. #define MQ_ERROR_CORRUPTED_SECURITY_DATA 0xC00E0030L
  936. //
  937. // MessageId: MQ_ERROR_CORRUPTED_PERSONAL_CERT_STORE
  938. //
  939. // MessageText:
  940. //
  941. //  The personal certificate store is corrupted.
  942. //
  943. #define MQ_ERROR_CORRUPTED_PERSONAL_CERT_STORE 0xC00E0031L
  944. //
  945. // MessageId: MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION
  946. //
  947. // MessageText:
  948. //
  949. //  The computer does not support encryption operations.
  950. //
  951. #define MQ_ERROR_COMPUTER_DOES_NOT_SUPPORT_ENCRYPTION 0xC00E0033L
  952. //
  953. // MessageId: MQ_ERROR_BAD_SECURITY_CONTEXT
  954. //
  955. // MessageText:
  956. //
  957. //  The security context is invalid.
  958. //
  959. #define MQ_ERROR_BAD_SECURITY_CONTEXT    0xC00E0035L
  960. //
  961. // MessageId: MQ_ERROR_COULD_NOT_GET_USER_SID
  962. //
  963. // MessageText:
  964. //
  965. //  The SID cannot be obtained from the thread token.
  966. //
  967. #define MQ_ERROR_COULD_NOT_GET_USER_SID  0xC00E0036L
  968. //
  969. // MessageId: MQ_ERROR_COULD_NOT_GET_ACCOUNT_INFO
  970. //
  971. // MessageText:
  972. //
  973. //  The account information for the user cannot be obtained.
  974. //
  975. #define MQ_ERROR_COULD_NOT_GET_ACCOUNT_INFO 0xC00E0037L
  976. //
  977. // MessageId: MQ_ERROR_ILLEGAL_MQCOLUMNS
  978. //
  979. // MessageText:
  980. //
  981. //  The MQCOLUMNS parameter is invalid.
  982. //
  983. #define MQ_ERROR_ILLEGAL_MQCOLUMNS       0xC00E0038L
  984. //
  985. // MessageId: MQ_ERROR_ILLEGAL_PROPID
  986. //
  987. // MessageText:
  988. //
  989. //  A property identifier is invalid.
  990. //
  991. #define MQ_ERROR_ILLEGAL_PROPID          0xC00E0039L
  992. //
  993. // MessageId: MQ_ERROR_ILLEGAL_RELATION
  994. //
  995. // MessageText:
  996. //
  997. //  A relationship parameter is invalid.
  998. //
  999. #define MQ_ERROR_ILLEGAL_RELATION        0xC00E003AL
  1000. //
  1001. // MessageId: MQ_ERROR_ILLEGAL_PROPERTY_SIZE
  1002. //
  1003. // MessageText:
  1004. //
  1005. //  The size of the buffer for the message identifier or correlation identifier is invalid.
  1006. //
  1007. #define MQ_ERROR_ILLEGAL_PROPERTY_SIZE   0xC00E003BL
  1008. //
  1009. // MessageId: MQ_ERROR_ILLEGAL_RESTRICTION_PROPID
  1010. //
  1011. // MessageText:
  1012. //
  1013. //  A property identifier specified in MQRESTRICTION is invalid.
  1014. //
  1015. #define MQ_ERROR_ILLEGAL_RESTRICTION_PROPID 0xC00E003CL
  1016. //
  1017. // MessageId: MQ_ERROR_ILLEGAL_MQQUEUEPROPS
  1018. //
  1019. // MessageText:
  1020. //
  1021. //  Either the pointer to the MQQUEUEPROPS structure has a null value, or no properties are specified in it.
  1022. //
  1023. #define MQ_ERROR_ILLEGAL_MQQUEUEPROPS    0xC00E003DL
  1024. //
  1025. // MessageId: MQ_ERROR_PROPERTY_NOTALLOWED
  1026. //
  1027. // MessageText:
  1028. //
  1029. //  The property identifier specified (for example, PROPID_Q_INSTANCE in MQSetQueueProperties)
  1030. //  is invalid for the operation requested.
  1031. //
  1032. #define MQ_ERROR_PROPERTY_NOTALLOWED     0xC00E003EL
  1033. //
  1034. // MessageId: MQ_ERROR_INSUFFICIENT_PROPERTIES
  1035. //
  1036. // MessageText:
  1037. //
  1038. //  Not all the properties required for the operation were specified
  1039. //  for the input parameters.
  1040. //
  1041. #define MQ_ERROR_INSUFFICIENT_PROPERTIES 0xC00E003FL
  1042. //
  1043. // MessageId: MQ_ERROR_MACHINE_EXISTS
  1044. //
  1045. // MessageText:
  1046. //
  1047. //  A computer with the same name already exists in the site. Either the computer object already exists
  1048. //  (for a Windows NT enterprise), or the MSMQ Configuration (msmq) object already exists for the applicable computer
  1049. //  object in Active directory (for a Windows 2000 or Windows Whistler forest).
  1050. //
  1051. #define MQ_ERROR_MACHINE_EXISTS          0xC00E0040L
  1052. //
  1053. // MessageId: MQ_ERROR_ILLEGAL_MQQMPROPS
  1054. //
  1055. // MessageText:
  1056. //
  1057. //  Either the pointer to the MQQMROPS structure has a null value, or no properties are specified in it.
  1058. //
  1059. #define MQ_ERROR_ILLEGAL_MQQMPROPS       0xC00E0041L
  1060. //
  1061. // MessageId: MQ_ERROR_DS_IS_FULL
  1062. //
  1063. // MessageText:
  1064. //
  1065. //  Obsolete, kept for backward compatibility
  1066. //
  1067. #define MQ_ERROR_DS_IS_FULL              0xC00E0042L
  1068. //
  1069. // MessageId: MQ_ERROR_DS_ERROR
  1070. //
  1071. // MessageText:
  1072. //
  1073. //  There is an internal Active Directory error.
  1074. //
  1075. #define MQ_ERROR_DS_ERROR                0xC00E0043L
  1076. //
  1077. // MessageId: MQ_ERROR_INVALID_OWNER
  1078. //
  1079. // MessageText:
  1080. //
  1081. //  The object owner is invalid (for example, MQCreateQueue failed because the QM
  1082. //  object is invalid).
  1083. //
  1084. #define MQ_ERROR_INVALID_OWNER           0xC00E0044L
  1085. //
  1086. // MessageId: MQ_ERROR_UNSUPPORTED_ACCESS_MODE
  1087. //
  1088. // MessageText:
  1089. //
  1090. //  The access mode specified is unsupported.
  1091. //
  1092. #define MQ_ERROR_UNSUPPORTED_ACCESS_MODE 0xC00E0045L
  1093. //
  1094. // MessageId: MQ_ERROR_RESULT_BUFFER_TOO_SMALL
  1095. //
  1096. // MessageText:
  1097. //
  1098. //  The result buffer specified is too small.
  1099. //
  1100. #define MQ_ERROR_RESULT_BUFFER_TOO_SMALL 0xC00E0046L
  1101. //
  1102. // MessageId: MQ_ERROR_DELETE_CN_IN_USE
  1103. //
  1104. // MessageText:
  1105. //
  1106. //  Obsolete, kept for backward compatibility
  1107. //
  1108. #define MQ_ERROR_DELETE_CN_IN_USE        0xC00E0048L
  1109. //
  1110. // MessageId: MQ_ERROR_NO_RESPONSE_FROM_OBJECT_SERVER
  1111. //
  1112. // MessageText:
  1113. //
  1114. //  There was no response from the object owner.
  1115. //
  1116. #define MQ_ERROR_NO_RESPONSE_FROM_OBJECT_SERVER 0xC00E0049L
  1117. //
  1118. // MessageId: MQ_ERROR_OBJECT_SERVER_NOT_AVAILABLE
  1119. //
  1120. // MessageText:
  1121. //
  1122. //  The object owner is not available.
  1123. //
  1124. #define MQ_ERROR_OBJECT_SERVER_NOT_AVAILABLE 0xC00E004AL
  1125. //
  1126. // MessageId: MQ_ERROR_QUEUE_NOT_AVAILABLE
  1127. //
  1128. // MessageText:
  1129. //
  1130. //  An error occurred while reading from a queue located on a remote computer.
  1131. //
  1132. #define MQ_ERROR_QUEUE_NOT_AVAILABLE     0xC00E004BL
  1133. //
  1134. // MessageId: MQ_ERROR_DTC_CONNECT
  1135. //
  1136. // MessageText:
  1137. //
  1138. //  A connection cannot be established with the Distributed Transaction Coordinator.
  1139. //
  1140. #define MQ_ERROR_DTC_CONNECT             0xC00E004CL
  1141. //
  1142. // MessageId: MQ_ERROR_TRANSACTION_IMPORT
  1143. //
  1144. // MessageText:
  1145. //
  1146. //  The transaction specified cannot be imported.
  1147. //
  1148. #define MQ_ERROR_TRANSACTION_IMPORT      0xC00E004EL
  1149. //
  1150. // MessageId: MQ_ERROR_TRANSACTION_USAGE
  1151. //
  1152. // MessageText:
  1153. //
  1154. //  An attempted action cannot be performed within a transaction.
  1155. //
  1156. #define MQ_ERROR_TRANSACTION_USAGE       0xC00E0050L
  1157. //
  1158. // MessageId: MQ_ERROR_TRANSACTION_SEQUENCE
  1159. //
  1160. // MessageText:
  1161. //
  1162. //  The transaction's operation sequence is incorrect.
  1163. //
  1164. #define MQ_ERROR_TRANSACTION_SEQUENCE    0xC00E0051L
  1165. //
  1166. // MessageId: MQ_ERROR_MISSING_CONNECTOR_TYPE
  1167. //
  1168. // MessageText:
  1169. //
  1170. //  The connector type message property is not specified. This property is required for sending an acknowledgment message or a secure message.
  1171. //
  1172. #define MQ_ERROR_MISSING_CONNECTOR_TYPE  0xC00E0055L
  1173. //
  1174. // MessageId: MQ_ERROR_STALE_HANDLE
  1175. //
  1176. // MessageText:
  1177. //
  1178. //  The Message Queuing service was restarted. Any open queue handles should be closed.
  1179. //
  1180. #define MQ_ERROR_STALE_HANDLE            0xC00E0056L
  1181. //
  1182. // MessageId: MQ_ERROR_TRANSACTION_ENLIST
  1183. //
  1184. // MessageText:
  1185. //
  1186. //  The transaction specified cannot be enlisted.
  1187. //
  1188. #define MQ_ERROR_TRANSACTION_ENLIST      0xC00E0058L
  1189. //
  1190. // MessageId: MQ_ERROR_QUEUE_DELETED
  1191. //
  1192. // MessageText:
  1193. //
  1194. //  The queue was deleted. Messages cannot be received anymore using this
  1195. //  queue handle. The handle should be closed.
  1196. //
  1197. #define MQ_ERROR_QUEUE_DELETED           0xC00E005AL
  1198. //
  1199. // MessageId: MQ_ERROR_ILLEGAL_CONTEXT
  1200. //
  1201. // MessageText:
  1202. //
  1203. //  The context parameter for MQLocateBegin is invalid.
  1204. //
  1205. #define MQ_ERROR_ILLEGAL_CONTEXT         0xC00E005BL
  1206. //
  1207. // MessageId: MQ_ERROR_ILLEGAL_SORT_PROPID
  1208. //
  1209. // MessageText:
  1210. //
  1211. //  An invalid property identifier is specified in MQSORTSET.
  1212. //
  1213. #define MQ_ERROR_ILLEGAL_SORT_PROPID     0xC00E005CL
  1214. //
  1215. // MessageId: MQ_ERROR_LABEL_TOO_LONG
  1216. //
  1217. // MessageText:
  1218. //
  1219. //  The message label is too long. Its length should be less than or equal to MQ_MAX_MSG_LABEL_LEN.
  1220. //
  1221. #define MQ_ERROR_LABEL_TOO_LONG          0xC00E005DL
  1222. //
  1223. // MessageId: MQ_ERROR_LABEL_BUFFER_TOO_SMALL
  1224. //
  1225. // MessageText:
  1226. //
  1227. //  The label buffer supplied to the API is too small.
  1228. //
  1229. #define MQ_ERROR_LABEL_BUFFER_TOO_SMALL  0xC00E005EL
  1230. //
  1231. // MessageId: MQ_ERROR_MQIS_SERVER_EMPTY
  1232. //
  1233. // MessageText:
  1234. //
  1235. //  Obsolete, kept for backward compatibility
  1236. //
  1237. #define MQ_ERROR_MQIS_SERVER_EMPTY       0xC00E005FL
  1238. //
  1239. // MessageId: MQ_ERROR_MQIS_READONLY_MODE
  1240. //
  1241. // MessageText:
  1242. //
  1243. //  Obsolete, kept for backward compatibility
  1244. //
  1245. #define MQ_ERROR_MQIS_READONLY_MODE      0xC00E0060L
  1246. //
  1247. // MessageId: MQ_ERROR_SYMM_KEY_BUFFER_TOO_SMALL
  1248. //
  1249. // MessageText:
  1250. //
  1251. //  The buffer passed for the symmetric key is too small.
  1252. //
  1253. #define MQ_ERROR_SYMM_KEY_BUFFER_TOO_SMALL 0xC00E0061L
  1254. //
  1255. // MessageId: MQ_ERROR_SIGNATURE_BUFFER_TOO_SMALL
  1256. //
  1257. // MessageText:
  1258. //
  1259. //  The buffer passed for the signature property is too small.
  1260. //
  1261. #define MQ_ERROR_SIGNATURE_BUFFER_TOO_SMALL 0xC00E0062L
  1262. //
  1263. // MessageId: MQ_ERROR_PROV_NAME_BUFFER_TOO_SMALL
  1264. //
  1265. // MessageText:
  1266. //
  1267. //  The buffer passed for the provider name property is too small.
  1268. //
  1269. #define MQ_ERROR_PROV_NAME_BUFFER_TOO_SMALL 0xC00E0063L
  1270. //
  1271. // MessageId: MQ_ERROR_ILLEGAL_OPERATION
  1272. //
  1273. // MessageText:
  1274. //
  1275. //  The operation is invalid for a foreign message queuing system.
  1276. //
  1277. #define MQ_ERROR_ILLEGAL_OPERATION       0xC00E0064L
  1278. //
  1279. // MessageId: MQ_ERROR_WRITE_NOT_ALLOWED
  1280. //
  1281. // MessageText:
  1282. //
  1283. //  Obsolete; another MQIS server is being installed. Write operations to the database are not allowed at this stage.
  1284. //
  1285. #define MQ_ERROR_WRITE_NOT_ALLOWED       0xC00E0065L
  1286. //
  1287. // MessageId: MQ_ERROR_WKS_CANT_SERVE_CLIENT
  1288. //
  1289. // MessageText:
  1290. //
  1291. //  Independent clients cannot support dependent clients.
  1292. //
  1293. #define MQ_ERROR_WKS_CANT_SERVE_CLIENT   0xC00E0066L
  1294. //
  1295. // MessageId: MQ_ERROR_DEPEND_WKS_LICENSE_OVERFLOW
  1296. //
  1297. // MessageText:
  1298. //
  1299. //  The number of dependent clients served by the Message Queuing server reached its upper limit.
  1300. //
  1301. #define MQ_ERROR_DEPEND_WKS_LICENSE_OVERFLOW 0xC00E0067L
  1302. //
  1303. // MessageId: MQ_CORRUPTED_QUEUE_WAS_DELETED
  1304. //
  1305. // MessageText:
  1306. //
  1307. //  The file %1 for the queue %2 in the Lqs folder was deleted because it was corrupted.
  1308. //
  1309. #define MQ_CORRUPTED_QUEUE_WAS_DELETED   0xC00E0068L
  1310. //
  1311. // MessageId: MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE
  1312. //
  1313. // MessageText:
  1314. //
  1315. //  The remote computer is not available.
  1316. //
  1317. #define MQ_ERROR_REMOTE_MACHINE_NOT_AVAILABLE 0xC00E0069L
  1318. //
  1319. // MessageId: MQ_ERROR_UNSUPPORTED_OPERATION
  1320. //
  1321. // MessageText:
  1322. //
  1323. //  This operation is not supported for Message Queuing installed in workgroup mode.
  1324. //
  1325. #define MQ_ERROR_UNSUPPORTED_OPERATION   0xC00E006AL
  1326. //
  1327. // MessageId: MQ_ERROR_ENCRYPTION_PROVIDER_NOT_SUPPORTED
  1328. //
  1329. // MessageText:
  1330. //
  1331. //  The cryptographic service provider %1 is not supported by Message Queuing.
  1332. //
  1333. #define MQ_ERROR_ENCRYPTION_PROVIDER_NOT_SUPPORTED 0xC00E006BL
  1334. //
  1335. // MessageId: MQ_ERROR_CANNOT_SET_CRYPTO_SEC_DESCR
  1336. //
  1337. // MessageText:
  1338. //
  1339. //  The security descriptors for the cryptographic keys cannot be set.
  1340. //
  1341. #define MQ_ERROR_CANNOT_SET_CRYPTO_SEC_DESCR 0xC00E006CL
  1342. //
  1343. // MessageId: MQ_ERROR_CERTIFICATE_NOT_PROVIDED
  1344. //
  1345. // MessageText:
  1346. //
  1347. //  A user attempted to send an authenticated message without a certificate.
  1348. //
  1349. #define MQ_ERROR_CERTIFICATE_NOT_PROVIDED 0xC00E006DL
  1350. //
  1351. // MessageId: MQ_ERROR_Q_DNS_PROPERTY_NOT_SUPPORTED
  1352. //
  1353. // MessageText:
  1354. //
  1355. //  The column PROPID_Q_PATHNAME_DNS is not supported for the MQLocateBegin API.
  1356. //
  1357. #define MQ_ERROR_Q_DNS_PROPERTY_NOT_SUPPORTED 0xC00E006EL
  1358. //
  1359. // MessageId: MQ_ERROR_CANNOT_CREATE_CERT_STORE
  1360. //
  1361. // MessageText:
  1362. //
  1363. //  A certificate store cannot be created for the internal certificate.
  1364. //
  1365. #define MQ_ERROR_CANNOT_CREATE_CERT_STORE 0xC00E006FL
  1366. //
  1367. // MessageId: MQ_ERROR_CANNOT_OPEN_CERT_STORE
  1368. //
  1369. // MessageText:
  1370. //
  1371. //  The certificate store for the internal certificate cannot be opened.
  1372. //
  1373. #define MQ_ERROR_CANNOT_OPEN_CERT_STORE  0xC00E0070L
  1374. //
  1375. // MessageId: MQ_ERROR_ILLEGAL_ENTERPRISE_OPERATION
  1376. //
  1377. // MessageText:
  1378. //
  1379. //  This operation is invalid for an MsmqServices object.
  1380. //
  1381. #define MQ_ERROR_ILLEGAL_ENTERPRISE_OPERATION 0xC00E0071L
  1382. //
  1383. // MessageId: MQ_ERROR_CANNOT_GRANT_ADD_GUID
  1384. //
  1385. // MessageText:
  1386. //
  1387. //  The Add GUID permission cannot be granted to the current user.
  1388. //
  1389. #define MQ_ERROR_CANNOT_GRANT_ADD_GUID   0xC00E0072L
  1390. //
  1391. // MessageId: MQ_ERROR_CANNOT_LOAD_MSMQOCM
  1392. //
  1393. // MessageText:
  1394. //
  1395. //  Obsolete: The dynamic-link library Msmqocm.dll cannot be loaded.
  1396. //
  1397. #define MQ_ERROR_CANNOT_LOAD_MSMQOCM     0xC00E0073L
  1398. //
  1399. // MessageId: MQ_ERROR_NO_ENTRY_POINT_MSMQOCM
  1400. //
  1401. // MessageText:
  1402. //
  1403. //  An entry point cannot be located in Msmqocm.dll.
  1404. //
  1405. #define MQ_ERROR_NO_ENTRY_POINT_MSMQOCM  0xC00E0074L
  1406. //
  1407. // MessageId: MQ_ERROR_NO_MSMQ_SERVERS_ON_DC
  1408. //
  1409. // MessageText:
  1410. //
  1411. //  Message Queuing servers cannot be found on domain controllers.
  1412. //
  1413. #define MQ_ERROR_NO_MSMQ_SERVERS_ON_DC   0xC00E0075L
  1414. //
  1415. // MessageId: MQ_ERROR_CANNOT_JOIN_DOMAIN
  1416. //
  1417. // MessageText:
  1418. //
  1419. //  The computer joined the domain, but Message Queuing will continue to run in workgroup mode because it failed to register itself in Active Directory.
  1420. //
  1421. #define MQ_ERROR_CANNOT_JOIN_DOMAIN      0xC00E0076L
  1422. //
  1423. // MessageId: MQ_ERROR_CANNOT_CREATE_ON_GC
  1424. //
  1425. // MessageText:
  1426. //
  1427. //  The object was not created on the Global Catalog server specified.
  1428. //
  1429. #define MQ_ERROR_CANNOT_CREATE_ON_GC     0xC00E0077L
  1430. //
  1431. // MessageId: MQ_ERROR_GUID_NOT_MATCHING
  1432. //
  1433. // MessageText:
  1434. //
  1435. //  Obsolete, kept for backward compatibility 
  1436. //
  1437. #define MQ_ERROR_GUID_NOT_MATCHING       0xC00E0078L
  1438. //
  1439. // MessageId: MQ_ERROR_PUBLIC_KEY_NOT_FOUND
  1440. //
  1441. // MessageText:
  1442. //
  1443. //  The public key for the computer %1 cannot be found.
  1444. //
  1445. #define MQ_ERROR_PUBLIC_KEY_NOT_FOUND    0xC00E0079L
  1446. //
  1447. // MessageId: MQ_ERROR_PUBLIC_KEY_DOES_NOT_EXIST
  1448. //
  1449. // MessageText:
  1450. //
  1451. //  The public key for the computer %1 does not exist.
  1452. //
  1453. #define MQ_ERROR_PUBLIC_KEY_DOES_NOT_EXIST 0xC00E007AL
  1454. //
  1455. // MessageId: MQ_ERROR_ILLEGAL_MQPRIVATEPROPS
  1456. //
  1457. // MessageText:
  1458. //
  1459. //  The parameters in MQPRIVATEPROPS are invalid. Either the pointer to the MQPRIVATEPROPS structure has a null value, or no properties are specified in it.
  1460. //
  1461. #define MQ_ERROR_ILLEGAL_MQPRIVATEPROPS  0xC00E007BL
  1462. //
  1463. // MessageId: MQ_ERROR_NO_GC_IN_DOMAIN
  1464. //
  1465. // MessageText:
  1466. //
  1467. //  Global Catalog servers cannot be found in the domain specified.
  1468. //
  1469. #define MQ_ERROR_NO_GC_IN_DOMAIN         0xC00E007CL
  1470. //
  1471. // MessageId: MQ_ERROR_NO_MSMQ_SERVERS_ON_GC
  1472. //
  1473. // MessageText:
  1474. //
  1475. //  No Message Queuing servers were found on Global Catalog servers.
  1476. //
  1477. #define MQ_ERROR_NO_MSMQ_SERVERS_ON_GC   0xC00E007DL
  1478. //
  1479. // MessageId: MQ_ERROR_CANNOT_GET_DN
  1480. //
  1481. // MessageText:
  1482. //
  1483. //  Obsolete, kept for backward compatibility 
  1484. //
  1485. #define MQ_ERROR_CANNOT_GET_DN           0xC00E007EL
  1486. //
  1487. // MessageId: MQ_ERROR_CANNOT_HASH_DATA_EX
  1488. //
  1489. // MessageText:
  1490. //
  1491. //  Data for an authenticated message cannot be hashed.
  1492. //
  1493. #define MQ_ERROR_CANNOT_HASH_DATA_EX     0xC00E007FL
  1494. //
  1495. // MessageId: MQ_ERROR_CANNOT_SIGN_DATA_EX
  1496. //
  1497. // MessageText:
  1498. //
  1499. //  Data cannot be signed before sending an authenticated message.
  1500. //
  1501. #define MQ_ERROR_CANNOT_SIGN_DATA_EX     0xC00E0080L
  1502. //
  1503. // MessageId: MQ_ERROR_CANNOT_CREATE_HASH_EX
  1504. //
  1505. // MessageText:
  1506. //
  1507. //  A hash object cannot be created for an authenticated message.
  1508. //
  1509. #define MQ_ERROR_CANNOT_CREATE_HASH_EX   0xC00E0081L
  1510. //
  1511. // MessageId: MQ_ERROR_FAIL_VERIFY_SIGNATURE_EX
  1512. //
  1513. // MessageText:
  1514. //
  1515. //  The signature of the message received is not valid.
  1516. //
  1517. #define MQ_ERROR_FAIL_VERIFY_SIGNATURE_EX 0xC00E0082L
  1518. //
  1519. // MessageId: MQ_ERROR_CANNOT_DELETE_PSC_OBJECTS
  1520. //
  1521. // MessageText:
  1522. //
  1523. //  The object that will be deleted is owned by a primary site controller. The operation cannot be performed.
  1524. //
  1525. #define MQ_ERROR_CANNOT_DELETE_PSC_OBJECTS 0xC00E0083L
  1526. //
  1527. // MessageId: MQ_ERROR_NO_MQUSER_OU
  1528. //
  1529. // MessageText:
  1530. //
  1531. //  There is no MSMQ Users organizational unit object in Active Directory for the domain. Please create one manually.
  1532. //
  1533. #define MQ_ERROR_NO_MQUSER_OU            0xC00E0084L
  1534. //
  1535. // MessageId: MQ_ERROR_CANNOT_LOAD_MQAD
  1536. //
  1537. // MessageText:
  1538. //
  1539. //  The dynamic-link library Mqad.dll cannot be loaded.
  1540. //
  1541. #define MQ_ERROR_CANNOT_LOAD_MQAD        0xC00E0085L
  1542. //
  1543. // MessageId: MQ_ERROR_CANNOT_LOAD_MQDSSRV
  1544. //
  1545. // MessageText:
  1546. //
  1547. //  Obsolete, kept for backward compatibility 
  1548. //
  1549. #define MQ_ERROR_CANNOT_LOAD_MQDSSRV     0xC00E0086L
  1550. //
  1551. // MessageId: MQ_ERROR_PROPERTIES_CONFLICT
  1552. //
  1553. // MessageText:
  1554. //
  1555. //  Two or more of the properties passed cannot co-exist.
  1556. //  For example, you cannot set both PROPID_M_RESP_QUEUE and PROPID_M_RESP_FORMAT_NAME when sending a message.
  1557. //
  1558. #define MQ_ERROR_PROPERTIES_CONFLICT     0xC00E0087L
  1559. //
  1560. // MessageId: MQ_ERROR_MESSAGE_NOT_FOUND
  1561. //
  1562. // MessageText:
  1563. //
  1564. //  The message does not exist or was removed from the queue.
  1565. //
  1566. #define MQ_ERROR_MESSAGE_NOT_FOUND       0xC00E0088L
  1567. //
  1568. // MessageId: MQ_ERROR_CANT_RESOLVE_SITES
  1569. //
  1570. // MessageText:
  1571. //
  1572. //  The sites where the computer resides cannot be resolved. Check that the subnets in your network are configured correctly in Active Directory and that each site is configured with the appropriate subnet.
  1573. //
  1574. #define MQ_ERROR_CANT_RESOLVE_SITES      0xC00E0089L
  1575. //
  1576. // MessageId: MQ_ERROR_NOT_SUPPORTED_BY_DEPENDENT_CLIENTS
  1577. //
  1578. // MessageText:
  1579. //
  1580. //  This operation is not supported by dependent clients.
  1581. //
  1582. #define MQ_ERROR_NOT_SUPPORTED_BY_DEPENDENT_CLIENTS 0xC00E008AL
  1583. //
  1584. // MessageId: MQ_ERROR_OPERATION_NOT_SUPPORTED_BY_REMOTE_COMPUTER
  1585. //
  1586. // MessageText:
  1587. //
  1588. //  This operation is not supported by the remote Message Queuing service. For example, MQReceiveMessageByLookupId is not supported by MSMQ 1.0/2.0.
  1589. //
  1590. #define MQ_ERROR_OPERATION_NOT_SUPPORTED_BY_REMOTE_COMPUTER 0xC00E008BL
  1591. //
  1592. // MessageId: MQ_ERROR_NOT_A_CORRECT_OBJECT_CLASS
  1593. //
  1594. // MessageText:
  1595. //
  1596. //  The object whose properties are being retrieved from Active Directory does not belong to the class requested.
  1597. //
  1598. #define MQ_ERROR_NOT_A_CORRECT_OBJECT_CLASS 0xC00E008CL
  1599. //
  1600. // MessageId: MQ_ERROR_MULTI_SORT_KEYS
  1601. //
  1602. // MessageText:
  1603. //
  1604. //  The value of cCol in MQSORTSET cannot be greater than 1. Active Directory supports only a single sort key.
  1605. //
  1606. #define MQ_ERROR_MULTI_SORT_KEYS         0xC00E008DL
  1607. //
  1608. // MessageId: MQ_ERROR_GC_NEEDED
  1609. //
  1610. // MessageText:
  1611. //
  1612. //  An MSMQ Configuration (msmq) object with the GUID supplied cannot be created. In order to support the creation of an MSMQ Configuration object with a given GUID, Message Queuing Downlevel Client Support must be installed on a domain controller that is configured as a Global Catalog (GC) server.
  1613. //
  1614. #define MQ_ERROR_GC_NEEDED               0xC00E008EL
  1615. //
  1616. // MessageId: MQ_ERROR_DS_BIND_ROOT_FOREST
  1617. //
  1618. // MessageText:
  1619. //
  1620. //  Binding to the forest root failed. This error usually indicates a problem in the DNS configuration.
  1621. //
  1622. #define MQ_ERROR_DS_BIND_ROOT_FOREST     0xC00E008FL
  1623. //
  1624. // MessageId: MQ_ERROR_DS_LOCAL_USER
  1625. //
  1626. // MessageText:
  1627. //
  1628. //  A local user is authenticated as an anonymous user and cannot access Active Directory. You need to log on as a domain user to access Active Directory.
  1629. //
  1630. #define MQ_ERROR_DS_LOCAL_USER           0xC00E0090L
  1631. //
  1632. // MessageId: MQ_ERROR_Q_ADS_PROPERTY_NOT_SUPPORTED
  1633. //
  1634. // MessageText:
  1635. //
  1636. //  The column PROPID_Q_ADS_PATH is not supported for the MQLocateBegin API.
  1637. //
  1638. #define MQ_ERROR_Q_ADS_PROPERTY_NOT_SUPPORTED 0xC00E0091L
  1639. //
  1640. // MessageId: MQ_ERROR_BAD_XML_FORMAT
  1641. //
  1642. // MessageText:
  1643. //
  1644. //  The given property is not a valid XML document.
  1645. //
  1646. #define MQ_ERROR_BAD_XML_FORMAT          0xC00E0092L
  1647. //
  1648. // MessageId: MQ_ERROR_UNSUPPORTED_CLASS
  1649. //
  1650. // MessageText:
  1651. //
  1652. //  The Active Directory object specified is not an instance of a supported class.
  1653. //
  1654. #define MQ_ERROR_UNSUPPORTED_CLASS       0xC00E0093L
  1655. //
  1656. // MessageId: MQ_ERROR_UNINITIALIZED_OBJECT
  1657. //
  1658. // MessageText:
  1659. //
  1660. //  The MSMQQueueState object must be initialized before it is used. 
  1661. //
  1662. #define MQ_ERROR_UNINITIALIZED_OBJECT    0xC00E0094L
  1663. //
  1664. // Informational
  1665. //
  1666. //
  1667. // MessageId: MQ_INFORMATION_PROPERTY
  1668. //
  1669. // MessageText:
  1670. //
  1671. //  One or more of the properties passed resulted in a warning, but the function completed.
  1672. //
  1673. #define MQ_INFORMATION_PROPERTY          0x400E0001L
  1674. //
  1675. // MessageId: MQ_INFORMATION_ILLEGAL_PROPERTY
  1676. //
  1677. // MessageText:
  1678. //
  1679. //  The property ID is invalid.
  1680. //
  1681. #define MQ_INFORMATION_ILLEGAL_PROPERTY  0x400E0002L
  1682. //
  1683. // MessageId: MQ_INFORMATION_PROPERTY_IGNORED
  1684. //
  1685. // MessageText:
  1686. //
  1687. //  The property specified was ignored for this operation (this occurs,
  1688. //  for example, when PROPID_M_SENDERID is passed to SendMessage()).
  1689. //
  1690. #define MQ_INFORMATION_PROPERTY_IGNORED  0x400E0003L
  1691. //
  1692. // MessageId: MQ_INFORMATION_UNSUPPORTED_PROPERTY
  1693. //
  1694. // MessageText:
  1695. //
  1696. //  The property specified is not supported and was ignored for this operation.
  1697. //
  1698. #define MQ_INFORMATION_UNSUPPORTED_PROPERTY 0x400E0004L
  1699. //
  1700. // MessageId: MQ_INFORMATION_DUPLICATE_PROPERTY
  1701. //
  1702. // MessageText:
  1703. //
  1704. //  The property specified is already in the property identifier array.
  1705. //  The duplicate was ignored for this operation.
  1706. //
  1707. #define MQ_INFORMATION_DUPLICATE_PROPERTY 0x400E0005L
  1708. //
  1709. // MessageId: MQ_INFORMATION_OPERATION_PENDING
  1710. //
  1711. // MessageText:
  1712. //
  1713. //  An asynchronous operation is currently pending.
  1714. //
  1715. #define MQ_INFORMATION_OPERATION_PENDING 0x400E0006L
  1716. //
  1717. // MessageId: MQ_INFORMATION_FORMATNAME_BUFFER_TOO_SMALL
  1718. //
  1719. // MessageText:
  1720. //
  1721. //  The format name buffer supplied to MQCreateQueue was too small
  1722. //  to hold the format name, however the queue was created successfully.
  1723. //
  1724. #define MQ_INFORMATION_FORMATNAME_BUFFER_TOO_SMALL 0x400E0009L
  1725. //
  1726. // MessageId: MQ_INFORMATION_INTERNAL_USER_CERT_EXIST
  1727. //
  1728. // MessageText:
  1729. //
  1730. //  An internal Message Queuing certificate already exists for this user.
  1731. //
  1732. #define MQ_INFORMATION_INTERNAL_USER_CERT_EXIST 0x400E000AL
  1733. //
  1734. // MessageId: MQ_INFORMATION_OWNER_IGNORED
  1735. //
  1736. // MessageText:
  1737. //
  1738. //  The queue owner was not set during the processing of this call to MQSetQueueSecurity().
  1739. //
  1740. #define MQ_INFORMATION_OWNER_IGNORED     0x400E000BL
  1741. //+-----------------------------------------
  1742. //
  1743. // Flags for MQRegisterCertificate()
  1744. //
  1745. //+-----------------------------------------
  1746. #define MQCERT_REGISTER_ALWAYS        0x01
  1747. #define MQCERT_REGISTER_IF_NOT_EXIST  0x02
  1748. //********************************************************************
  1749. //  SECURITY Flags (Queue access control)
  1750. //********************************************************************
  1751. #define MQSEC_DELETE_MESSAGE                0x1
  1752. #define MQSEC_PEEK_MESSAGE                  0x2
  1753. #define MQSEC_WRITE_MESSAGE                 0x4
  1754. #define MQSEC_DELETE_JOURNAL_MESSAGE        0x8
  1755. #define MQSEC_SET_QUEUE_PROPERTIES          0x10
  1756. #define MQSEC_GET_QUEUE_PROPERTIES          0x20
  1757. #define MQSEC_DELETE_QUEUE                  DELETE
  1758. #define MQSEC_GET_QUEUE_PERMISSIONS         READ_CONTROL
  1759. #define MQSEC_CHANGE_QUEUE_PERMISSIONS      WRITE_DAC
  1760. #define MQSEC_TAKE_QUEUE_OWNERSHIP          WRITE_OWNER
  1761. #define MQSEC_RECEIVE_MESSAGE               (MQSEC_DELETE_MESSAGE | 
  1762.                                              MQSEC_PEEK_MESSAGE)
  1763. #define MQSEC_RECEIVE_JOURNAL_MESSAGE       (MQSEC_DELETE_JOURNAL_MESSAGE | 
  1764.                                              MQSEC_PEEK_MESSAGE)
  1765. #define MQSEC_QUEUE_GENERIC_READ            (MQSEC_GET_QUEUE_PROPERTIES | 
  1766.                                              MQSEC_GET_QUEUE_PERMISSIONS | 
  1767.                                              MQSEC_RECEIVE_MESSAGE | 
  1768.                                              MQSEC_RECEIVE_JOURNAL_MESSAGE)
  1769. #define MQSEC_QUEUE_GENERIC_WRITE           (MQSEC_GET_QUEUE_PROPERTIES | 
  1770.                                              MQSEC_GET_QUEUE_PERMISSIONS | 
  1771.                                              MQSEC_WRITE_MESSAGE)
  1772. #define MQSEC_QUEUE_GENERIC_EXECUTE         0
  1773. #define MQSEC_QUEUE_GENERIC_ALL             (MQSEC_RECEIVE_MESSAGE | 
  1774.                                              MQSEC_RECEIVE_JOURNAL_MESSAGE | 
  1775.                                              MQSEC_WRITE_MESSAGE | 
  1776.                                              MQSEC_SET_QUEUE_PROPERTIES | 
  1777.                                              MQSEC_GET_QUEUE_PROPERTIES | 
  1778.                                              MQSEC_DELETE_QUEUE | 
  1779.                                              MQSEC_GET_QUEUE_PERMISSIONS | 
  1780.                                              MQSEC_CHANGE_QUEUE_PERMISSIONS | 
  1781.                                              MQSEC_TAKE_QUEUE_OWNERSHIP)
  1782. #ifdef __cplusplus
  1783. extern "C"
  1784. {
  1785. #endif
  1786. //********************************************************************
  1787. //  RECEIVE CALLBACK
  1788. //********************************************************************
  1789. typedef
  1790. VOID
  1791. (APIENTRY *PMQRECEIVECALLBACK)(
  1792.     HRESULT hrStatus,
  1793.     QUEUEHANDLE hSource,
  1794.     DWORD dwTimeout,
  1795.     DWORD dwAction,
  1796.     MQMSGPROPS* pMessageProps,
  1797.     LPOVERLAPPED lpOverlapped,
  1798.     HANDLE hCursor
  1799.     );
  1800. //********************************************************************
  1801. // MSMQ API
  1802. //********************************************************************
  1803. HRESULT
  1804. APIENTRY
  1805. MQCreateQueue(
  1806.     IN PSECURITY_DESCRIPTOR pSecurityDescriptor,
  1807.     IN OUT MQQUEUEPROPS* pQueueProps,
  1808.     OUT LPWSTR lpwcsFormatName,
  1809.     IN OUT LPDWORD lpdwFormatNameLength
  1810.     );
  1811. HRESULT
  1812. APIENTRY
  1813. MQDeleteQueue(
  1814.     IN LPCWSTR lpwcsFormatName
  1815.     );
  1816. HRESULT
  1817. APIENTRY
  1818. MQLocateBegin(
  1819.     IN LPCWSTR lpwcsContext,
  1820.     IN MQRESTRICTION* pRestriction,
  1821.     IN MQCOLUMNSET* pColumns,
  1822.     IN MQSORTSET* pSort,
  1823.     OUT PHANDLE phEnum
  1824.     );
  1825. HRESULT
  1826. APIENTRY
  1827. MQLocateNext(
  1828.     IN HANDLE hEnum,
  1829.     IN OUT DWORD* pcProps,
  1830.     OUT MQPROPVARIANT aPropVar[]
  1831.     );
  1832. HRESULT
  1833. APIENTRY
  1834. MQLocateEnd(
  1835.     IN HANDLE hEnum
  1836.     );
  1837. HRESULT
  1838. APIENTRY
  1839. MQOpenQueue(
  1840.     IN LPCWSTR lpwcsFormatName,
  1841.     IN DWORD dwAccess,
  1842.     IN DWORD dwShareMode,
  1843.     OUT QUEUEHANDLE* phQueue
  1844.     );
  1845. HRESULT
  1846. APIENTRY
  1847. MQSendMessage(
  1848.     IN QUEUEHANDLE hDestinationQueue,
  1849.     IN MQMSGPROPS* pMessageProps,
  1850.     IN ITransaction *pTransaction
  1851.     );
  1852. HRESULT
  1853. APIENTRY
  1854. MQReceiveMessage(
  1855.     IN QUEUEHANDLE hSource,
  1856.     IN DWORD dwTimeout,
  1857.     IN DWORD dwAction,
  1858.     IN OUT MQMSGPROPS* pMessageProps,
  1859.     IN OUT LPOVERLAPPED lpOverlapped,
  1860.     IN PMQRECEIVECALLBACK fnReceiveCallback,
  1861.     IN HANDLE hCursor,
  1862.     IN ITransaction* pTransaction
  1863.     );
  1864. HRESULT
  1865. APIENTRY
  1866. MQReceiveMessageByLookupId(
  1867.     IN QUEUEHANDLE hSource,
  1868.     IN ULONGLONG ullLookupId,
  1869.     IN DWORD dwLookupAction,
  1870.     IN OUT MQMSGPROPS* pMessageProps,
  1871.     IN OUT LPOVERLAPPED lpOverlapped,
  1872.     IN PMQRECEIVECALLBACK fnReceiveCallback,
  1873.     IN ITransaction *pTransaction
  1874.     );
  1875. HRESULT
  1876. APIENTRY
  1877. MQCreateCursor(
  1878.     IN QUEUEHANDLE hQueue,
  1879.     OUT PHANDLE phCursor
  1880.     );
  1881. HRESULT
  1882. APIENTRY
  1883. MQCloseCursor(
  1884.     IN HANDLE hCursor
  1885.     );
  1886. HRESULT
  1887. APIENTRY
  1888. MQCloseQueue(
  1889.     IN QUEUEHANDLE hQueue
  1890.     );
  1891. HRESULT
  1892. APIENTRY
  1893. MQSetQueueProperties(
  1894.     IN LPCWSTR lpwcsFormatName,
  1895.     IN MQQUEUEPROPS* pQueueProps
  1896.     );
  1897. HRESULT
  1898. APIENTRY
  1899. MQGetQueueProperties(
  1900.     IN LPCWSTR lpwcsFormatName,
  1901.     OUT MQQUEUEPROPS* pQueueProps
  1902.     );
  1903. HRESULT
  1904. APIENTRY
  1905. MQGetQueueSecurity(
  1906.     IN LPCWSTR lpwcsFormatName,
  1907.     IN SECURITY_INFORMATION RequestedInformation,
  1908.     OUT PSECURITY_DESCRIPTOR pSecurityDescriptor,
  1909.     IN DWORD nLength,
  1910.     OUT LPDWORD lpnLengthNeeded
  1911.     );
  1912. HRESULT
  1913. APIENTRY
  1914. MQSetQueueSecurity(
  1915.     IN LPCWSTR lpwcsFormatName,
  1916.     IN SECURITY_INFORMATION SecurityInformation,
  1917.     IN PSECURITY_DESCRIPTOR pSecurityDescriptor
  1918.     );
  1919. HRESULT
  1920. APIENTRY
  1921. MQPathNameToFormatName(
  1922.     IN LPCWSTR lpwcsPathName,
  1923.     OUT LPWSTR lpwcsFormatName,
  1924.     IN OUT LPDWORD lpdwFormatNameLength
  1925.     );
  1926. HRESULT
  1927. APIENTRY
  1928. MQHandleToFormatName(
  1929.     IN QUEUEHANDLE hQueue,
  1930.     OUT LPWSTR lpwcsFormatName,
  1931.     IN OUT LPDWORD lpdwFormatNameLength
  1932.     );
  1933. HRESULT
  1934. APIENTRY
  1935. MQInstanceToFormatName(
  1936.     IN GUID* pGuid,
  1937.     OUT LPWSTR lpwcsFormatName,
  1938.     IN OUT LPDWORD lpdwFormatNameLength
  1939.     );
  1940. HRESULT
  1941. APIENTRY
  1942. MQADsPathToFormatName(
  1943.     IN LPCWSTR lpwcsADsPath,
  1944.     OUT LPWSTR lpwcsFormatName,
  1945.     IN OUT LPDWORD lpdwFormatNameLength
  1946.     );
  1947. VOID
  1948. APIENTRY
  1949. MQFreeMemory(
  1950.     IN PVOID pvMemory
  1951.     );
  1952. HRESULT
  1953. APIENTRY
  1954. MQGetMachineProperties(
  1955.     IN LPCWSTR lpwcsMachineName,
  1956.     IN const GUID* pguidMachineId,
  1957.     IN OUT MQQMPROPS* pQMProps
  1958.     );
  1959. HRESULT
  1960. APIENTRY
  1961. MQGetSecurityContext(
  1962.     IN PVOID lpCertBuffer,
  1963.     IN DWORD dwCertBufferLength,
  1964.     OUT HANDLE* phSecurityContext
  1965.     );
  1966. HRESULT
  1967. APIENTRY
  1968. MQGetSecurityContextEx(
  1969.     IN PVOID lpCertBuffer,
  1970.     IN DWORD dwCertBufferLength,
  1971.     OUT HANDLE* phSecurityContext
  1972.     );
  1973. VOID
  1974. APIENTRY
  1975. MQFreeSecurityContext(
  1976.     IN HANDLE hSecurityContext
  1977.     );
  1978. HRESULT
  1979. APIENTRY
  1980. MQRegisterCertificate(
  1981.     IN DWORD dwFlags,
  1982.     IN PVOID lpCertBuffer,
  1983.     IN DWORD dwCertBufferLength
  1984.     );
  1985. HRESULT
  1986. APIENTRY
  1987. MQBeginTransaction(
  1988.     OUT ITransaction **ppTransaction
  1989.     );
  1990. HRESULT
  1991. APIENTRY
  1992. MQGetOverlappedResult(
  1993.     IN LPOVERLAPPED lpOverlapped
  1994.     );
  1995. HRESULT
  1996. APIENTRY
  1997. MQGetPrivateComputerInformation(
  1998.     IN LPCWSTR lpwcsComputerName,
  1999.     IN OUT MQPRIVATEPROPS* pPrivateProps
  2000.     );
  2001. HRESULT
  2002. APIENTRY
  2003. MQPurgeQueue(
  2004.     IN QUEUEHANDLE hQueue
  2005.     );
  2006. HRESULT
  2007. APIENTRY
  2008. MQMgmtGetInfo(
  2009.     IN LPCWSTR pComputerName,
  2010.     IN LPCWSTR pObjectName,
  2011.     IN OUT MQMGMTPROPS* pMgmtProps
  2012.     );
  2013. HRESULT
  2014. APIENTRY
  2015. MQMgmtAction(
  2016.     IN LPCWSTR pComputerName,
  2017.     IN LPCWSTR pObjectName,
  2018.     IN LPCWSTR pAction
  2019.     );
  2020. #ifdef __cplusplus
  2021. }
  2022. #endif
  2023. #endif // __MQ_H__