Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.3 KiB

  1. // Merged duplicate copies of this from different versions of sndtoint.h. -RajeevD
  2. typedef struct
  3. {
  4. UINT uMode; //The mode for this data object
  5. HANDLE hMapiThread; // If non-NULL, must wait on it before rest of struct is valid!
  6. LPMAPISESSION lpSes; //The main session handle
  7. LPADRBOOK lpAdrBook; //The open address book
  8. LPABCONT lpABCont; //The open address book container
  9. LPMESSAGE lpMsg; //The message that everything is happing to
  10. LPTSTR lpszDocName;//The document name that was printed
  11. LPADRLIST lpAdrLst; //Address List that will be set on the message
  12. LPTSTR lpszSubject;//The subject of the message
  13. LPTSTR lpszBody; //The body of the message
  14. BOOL bIncCP; //Include cover page?
  15. BOOL bNoteOnCP; // start the note on the cover page
  16. TCHAR szCPName[MAX_PATH]; //The name of the cover page selected in the UI
  17. UINT uPollDoc; //The type of poll doc to retrieve. Default or specific
  18. UINT uPollWhen; //The time the poll request is to go out
  19. WORD wSendHour; //The hour the fax is supposed to go out at
  20. WORD wSendMinute; //The minute the poll request is supposed to go out at
  21. TCHAR szPollTitle[MAX_POLL_TITLE]; //The title of the poll request
  22. TCHAR szPollPasswd[MAX_POLL_PASSWORD]; //The password for the poll request
  23. }
  24. FAXMAPIDATA, FAR *LPFAXMAPIDATA;