xcmc.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. /*
  2. * Copyright (C) 2004 Chris Morgan
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #ifndef _XCMC_H
  19. #define _XCMC_H
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. typedef char CMC_sint8;
  24. typedef short CMC_sint16;
  25. typedef long int CMC_sint32;
  26. typedef unsigned short int CMC_uint16;
  27. typedef unsigned long int CMC_uint32;
  28. typedef void* CMC_buffer;
  29. typedef char* CMC_string;
  30. typedef CMC_uint16 CMC_boolean;
  31. typedef CMC_sint32 CMC_enum;
  32. typedef CMC_uint32 CMC_return_code;
  33. typedef CMC_uint32 CMC_flags;
  34. typedef CMC_string CMC_object_identifier;
  35. typedef CMC_uint32 CMC_session_id;
  36. typedef CMC_uint32 CMC_ui_id;
  37. #define CMC_FALSE ((CMC_boolean)0)
  38. #define CMC_TRUE ((CMC_boolean)1)
  39. #define CMC_SUCCESS ((CMC_return_code) 0)
  40. #define CMC_E_AMBIGUOUS_RECIPIENT ((CMC_return_code) 1)
  41. #define CMC_E_ATTACHMENT_NOT_FOUND ((CMC_return_code) 2)
  42. #define CMC_E_ATTACHMENT_OPEN_FAILURE ((CMC_return_code) 3)
  43. #define CMC_E_ATTACHMENT_READ_FAILURE ((CMC_return_code) 4)
  44. #define CMC_E_ATTACHMENT_WRITE_FAILURE ((CMC_return_code) 5)
  45. #define CMC_E_COUNTED_STRING_UNSUPPORTED ((CMC_return_code) 6)
  46. #define CMC_E_DISK_FULL ((CMC_return_code) 7)
  47. #define CMC_E_FAILURE ((CMC_return_code) 8)
  48. #define CMC_E_INSUFFICIENT_MEMORY ((CMC_return_code) 9)
  49. #define CMC_E_INVALID_CONFIGURATION ((CMC_return_code) 10)
  50. #define CMC_E_INVALID_ENUM ((CMC_return_code) 11)
  51. #define CMC_E_INVALID_FLAG ((CMC_return_code) 12)
  52. #define CMC_E_INVALID_MEMORY ((CMC_return_code) 13)
  53. #define CMC_E_INVALID_MESSAGE_PARAMETER ((CMC_return_code) 14)
  54. #define CMC_E_INVALID_MESSAGE_REFERENCE ((CMC_return_code) 15)
  55. #define CMC_E_INVALID_PARAMETER ((CMC_return_code) 16)
  56. #define CMC_E_INVALID_SESSION_ID ((CMC_return_code) 17)
  57. #define CMC_E_INVALID_UI_ID ((CMC_return_code) 18)
  58. #define CMC_E_LOGON_FAILURE ((CMC_return_code) 19)
  59. #define CMC_E_MESSAGE_IN_USE ((CMC_return_code) 20)
  60. #define CMC_E_NOT_SUPPORTED ((CMC_return_code) 21)
  61. #define CMC_E_PASSWORD_REQUIRED ((CMC_return_code) 22)
  62. #define CMC_E_RECIPIENT_NOT_FOUND ((CMC_return_code) 23)
  63. #define CMC_E_SERVICE_UNAVAILABLE ((CMC_return_code) 24)
  64. #define CMC_E_TEXT_TOO_LARGE ((CMC_return_code) 25)
  65. #define CMC_E_TOO_MANY_FILES ((CMC_return_code) 26)
  66. #define CMC_E_TOO_MANY_RECIPIENTS ((CMC_return_code) 27)
  67. #define CMC_E_UNABLE_TO_NOT_MARK_AS_READ ((CMC_return_code) 28)
  68. #define CMC_E_UNRECOGNIZED_MESSAGE_TYPE ((CMC_return_code) 29)
  69. #define CMC_E_UNSUPPORTED_ACTION ((CMC_return_code) 30)
  70. #define CMC_E_UNSUPPORTED_CHARACTER_SET ((CMC_return_code) 31)
  71. #define CMC_E_UNSUPPORTED_DATA_EXT ((CMC_return_code) 32)
  72. #define CMC_E_UNSUPPORTED_FLAG ((CMC_return_code) 33)
  73. #define CMC_E_UNSUPPORTED_FUNCTION_EXT ((CMC_return_code) 34)
  74. #define CMC_E_UNSUPPORTED_VERSION ((CMC_return_code) 35)
  75. #define CMC_E_USER_CANCEL ((CMC_return_code) 36)
  76. #define CMC_E_USER_NOT_LOGGED_ON ((CMC_return_code) 37)
  77. #define CMC_ERROR_DISPLAYED ((CMC_return_code) 0x00008000)
  78. #define CMC_ERROR_RSV_MASK ((CMC_return_code) 0x0000FFFF)
  79. #define CMC_ERROR_IMPL_MASK ((CMC_return_code) 0xFFFF0000)
  80. typedef struct {
  81. CMC_uint32 length;
  82. char string[1];
  83. } CMC_counted_string;
  84. typedef CMC_counted_string CMC_message_reference;
  85. typedef struct {
  86. CMC_sint8 second;
  87. CMC_sint8 minute;
  88. CMC_sint8 hour;
  89. CMC_sint8 day;
  90. CMC_sint8 month;
  91. CMC_sint8 year;
  92. CMC_sint8 isdst;
  93. CMC_sint8 unused1;
  94. CMC_sint16 tmzone;
  95. CMC_sint16 unused2;
  96. } CMC_time;
  97. #define CMC_NO_TIMEZONE ((CMC_sint16) 0x8000)
  98. typedef struct {
  99. CMC_uint32 item_code;
  100. CMC_uint32 item_data;
  101. CMC_buffer item_reference;
  102. CMC_flags extension_flags;
  103. } CMC_extension;
  104. #define CMC_EXT_REQUIRED ((CMC_flags) 0x00010000)
  105. #define CMC_EXT_OUTPUT ((CMC_flags) 0x00020000)
  106. #define CMC_EXT_LAST_ELEMENT ((CMC_flags) 0x80000000)
  107. #define CMC_EXT_RSV_FLAG_MASK ((CMC_flags) 0xFFFF0000)
  108. #define CMC_EXT_ITEM_FLAG_MASK ((CMC_flags) 0x0000FFFF)
  109. typedef struct CMC_attachment_s {
  110. CMC_string attach_title;
  111. CMC_object_identifier attach_type;
  112. CMC_string attach_filename;
  113. CMC_flags attach_flags;
  114. CMC_extension *attach_extensions;
  115. } CMC_attachment;
  116. #define CMC_ATT_APP_OWNS_FILE ((CMC_flags) 1)
  117. #define CMC_ATT_LAST_ELEMENT ((CMC_flags) 0x80000000)
  118. #define CMC_ATT_OID_BINARY "? ? ? ? ? ?"
  119. #define CMC_ATT_OID_TEXT "? ? ? ? ? ?"
  120. typedef struct {
  121. CMC_string name;
  122. CMC_enum name_type;
  123. CMC_string address;
  124. CMC_enum role;
  125. CMC_flags recip_flags;
  126. CMC_extension *recip_extensions;
  127. } CMC_recipient;
  128. #define CMC_TYPE_UNKNOWN ((CMC_enum) 0)
  129. #define CMC_TYPE_INDIVIDUAL ((CMC_enum) 1)
  130. #define CMC_TYPE_GROUP ((CMC_enum) 2)
  131. #define CMC_ROLE_TO ((CMC_enum) 0)
  132. #define CMC_ROLE_CC ((CMC_enum) 1)
  133. #define CMC_ROLE_BCC ((CMC_enum) 2)
  134. #define CMC_ROLE_ORIGINATOR ((CMC_enum) 3)
  135. #define CMC_ROLE_AUTHORIZING_USER ((CMC_enum) 4)
  136. #define CMC_RECIP_IGNORE ((CMC_flags) 1)
  137. #define CMC_RECIP_LIST_TRUNCATED ((CMC_flags) 2)
  138. #define CMC_RECIP_LAST_ELEMENT ((CMC_flags) 0x80000000)
  139. typedef struct {
  140. CMC_message_reference *message_reference;
  141. CMC_string message_type;
  142. CMC_string subject;
  143. CMC_time time_sent;
  144. CMC_string text_note;
  145. CMC_recipient *recipients;
  146. CMC_attachment *attachments;
  147. CMC_flags message_flags;
  148. CMC_extension *message_extensions;
  149. } CMC_message;
  150. #define CMC_MSG_READ ((CMC_flags) 1)
  151. #define CMC_MSG_TEXT_NOTE_AS_FILE ((CMC_flags) 2)
  152. #define CMC_MSG_UNSENT ((CMC_flags) 4)
  153. #define CMC_MSG_LAST_ELEMENT ((CMC_flags) 0x80000000)
  154. typedef struct {
  155. CMC_message_reference *message_reference;
  156. CMC_string message_type;
  157. CMC_string subject;
  158. CMC_time time_sent;
  159. CMC_uint32 byte_length;
  160. CMC_recipient *originator;
  161. CMC_flags summary_flags;
  162. CMC_extension *message_summary_extensions;
  163. } CMC_message_summary;
  164. #define CMC_SUM_READ ((CMC_flags) 1)
  165. #define CMC_SUM_UNSENT ((CMC_flags) 2)
  166. #define CMC_SUM_LAST_ELEMENT ((CMC_flags) 0x80000000)
  167. #define CMC_ERROR_UI_ALLOWED ((CMC_flags) 0x01000000)
  168. #define CMC_LOGON_UI_ALLOWED ((CMC_flags) 0x02000000)
  169. #define CMC_COUNTED_STRING_TYPE ((CMC_flags) 0x04000000)
  170. CMC_return_code WINAPI cmc_send(
  171. CMC_session_id session,
  172. CMC_message *message,
  173. CMC_flags send_flags,
  174. CMC_ui_id ui_id,
  175. CMC_extension *send_extensions
  176. );
  177. #define CMC_SEND_UI_REQUESTED ((CMC_flags) 1)
  178. CMC_return_code WINAPI cmc_send_documents(
  179. CMC_string recipient_addresses,
  180. CMC_string subject,
  181. CMC_string text_note,
  182. CMC_flags send_doc_flags,
  183. CMC_string file_paths,
  184. CMC_string file_names,
  185. CMC_string delimiter,
  186. CMC_ui_id ui_id
  187. );
  188. #define CMC_FIRST_ATTACH_AS_TEXT_NOTE ((CMC_flags) 2)
  189. CMC_return_code WINAPI cmc_act_on(
  190. CMC_session_id session,
  191. CMC_message_reference *message_reference,
  192. CMC_enum operation,
  193. CMC_flags act_on_flags,
  194. CMC_ui_id ui_id,
  195. CMC_extension *act_on_extensions
  196. );
  197. #define CMC_ACT_ON_EXTENDED ((CMC_enum) 0)
  198. #define CMC_ACT_ON_DELETE ((CMC_enum) 1)
  199. CMC_return_code WINAPI cmc_list(
  200. CMC_session_id session,
  201. CMC_string message_type,
  202. CMC_flags list_flags,
  203. CMC_message_reference *seed,
  204. CMC_uint32 *count,
  205. CMC_ui_id ui_id,
  206. CMC_message_summary **result,
  207. CMC_extension *list_extensions
  208. );
  209. #define CMC_LIST_UNREAD_ONLY ((CMC_flags) 1)
  210. #define CMC_LIST_MSG_REFS_ONLY ((CMC_flags) 2)
  211. #define CMC_LIST_COUNT_ONLY ((CMC_flags) 4)
  212. #define CMC_LENGTH_UNKNOWN 0xFFFFFFFF
  213. CMC_return_code WINAPI cmc_read(
  214. CMC_session_id session,
  215. CMC_message_reference *message_reference,
  216. CMC_flags read_flags,
  217. CMC_message **message,
  218. CMC_ui_id ui_id,
  219. CMC_extension *read_extensions
  220. );
  221. #define CMC_DO_NOT_MARK_AS_READ ((CMC_flags) 1)
  222. #define CMC_MSG_AND_ATT_HDRS_ONLY ((CMC_flags) 2)
  223. #define CMC_READ_FIRST_UNREAD_MESSAGE ((CMC_flags) 4)
  224. CMC_return_code WINAPI cmc_look_up(
  225. CMC_session_id session,
  226. CMC_recipient *recipient_in,
  227. CMC_flags look_up_flags,
  228. CMC_ui_id ui_id,
  229. CMC_uint32 *count,
  230. CMC_recipient **recipient_out,
  231. CMC_extension *look_up_extensions
  232. );
  233. #define CMC_LOOKUP_RESOLVE_PREFIX_SEARCH ((CMC_flags) 1)
  234. #define CMC_LOOKUP_RESOLVE_IDENTITY ((CMC_flags) 2)
  235. #define CMC_LOOKUP_RESOLVE_UI ((CMC_flags) 4)
  236. #define CMC_LOOKUP_DETAILS_UI ((CMC_flags) 8)
  237. #define CMC_LOOKUP_ADDRESSING_UI ((CMC_flags) 16)
  238. CMC_return_code WINAPI cmc_free( CMC_buffer memory );
  239. CMC_return_code WINAPI cmc_logoff(
  240. CMC_session_id session,
  241. CMC_ui_id ui_id,
  242. CMC_flags logoff_flags,
  243. CMC_extension *logoff_extensions
  244. );
  245. CMC_return_code WINAPI cmc_logon(
  246. CMC_string service,
  247. CMC_string user,
  248. CMC_string password,
  249. CMC_object_identifier character_set,
  250. CMC_ui_id ui_id,
  251. CMC_uint16 caller_cmc_version,
  252. CMC_flags logon_flags,
  253. CMC_session_id *session,
  254. CMC_extension *logon_extensions
  255. );
  256. #define CMC_VERSION ((CMC_uint16) 100)
  257. CMC_return_code WINAPI cmc_query_configuration(
  258. CMC_session_id session,
  259. CMC_enum item,
  260. CMC_buffer reference,
  261. CMC_extension *config_extensions
  262. );
  263. #define CMC_CONFIG_CHARACTER_SET ((CMC_enum) 1)
  264. #define CMC_CONFIG_LINE_TERM ((CMC_enum) 2)
  265. #define CMC_CONFIG_DEFAULT_SERVICE ((CMC_enum) 3)
  266. #define CMC_CONFIG_DEFAULT_USER ((CMC_enum) 4)
  267. #define CMC_CONFIG_REQ_PASSWORD ((CMC_enum) 5)
  268. #define CMC_CONFIG_REQ_SERVICE ((CMC_enum) 6)
  269. #define CMC_CONFIG_REQ_USER ((CMC_enum) 7)
  270. #define CMC_CONFIG_UI_AVAIL ((CMC_enum) 8)
  271. #define CMC_CONFIG_SUP_NOMKMSGREAD ((CMC_enum) 9)
  272. #define CMC_CONFIG_SUP_COUNTED_STR ((CMC_enum) 10)
  273. #define CMC_CONFIG_VER_IMPLEM ((CMC_enum) 11)
  274. #define CMC_CONFIG_VER_SPEC ((CMC_enum) 12)
  275. #define CMC_LINE_TERM_CRLF ((CMC_enum) 0)
  276. #define CMC_LINE_TERM_CR ((CMC_enum) 1)
  277. #define CMC_LINE_TERM_LF ((CMC_enum) 2)
  278. #define CMC_REQUIRED_NO ((CMC_enum) 0)
  279. #define CMC_REQUIRED_YES ((CMC_enum) 1)
  280. #define CMC_REQUIRED_OPT ((CMC_enum) 2)
  281. #define CMC_CHAR_CP437 "1 2 840 113556 3 2 437"
  282. #define CMC_CHAR_CP850 "1 2 840 113556 3 2 85"
  283. #define CMC_CHAR_CP1252 "1 2 840 113556 3 2 1252"
  284. #define CMC_CHAR_ISTRING "1 2 840 113556 3 2 0"
  285. #define CMC_CHAR_UNICODE "1 2 840 113556 3 2 1"
  286. #ifdef __cplusplus
  287. }
  288. #endif
  289. #endif /* #ifndef _XCMC_H */