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.

44 lines
784 B

  1. #ifndef _EFSPUTIL_H_
  2. #define _EFSPUTIL_H_
  3. typedef struct tag_FSPI_BRAND_INFO
  4. {
  5. DWORD dwSizeOfStruct;
  6. LPWSTR lptstrSenderTsid;
  7. LPWSTR lptstrRecipientPhoneNumber;
  8. LPWSTR lptstrSenderCompany;
  9. SYSTEMTIME tmDateTime;
  10. } FSPI_BRAND_INFO;
  11. typedef const FSPI_BRAND_INFO * LPCFSPI_BRAND_INFO;
  12. typedef FSPI_BRAND_INFO * LPFSPI_BRAND_INFO;
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. HRESULT
  17. WINAPI
  18. FaxBrandDocument(
  19. LPCTSTR lpctsrtFile,
  20. LPCFSPI_BRAND_INFO lpcBrandInfo
  21. );
  22. HRESULT
  23. WINAPI
  24. FaxRenderCoverPage(
  25. LPCTSTR lpctstrTargetFile,
  26. LPCFSPI_COVERPAGE_INFO lpCoverPageInfo,
  27. LPCFSPI_PERSONAL_PROFILE lpRecipientProfile,
  28. LPCFSPI_PERSONAL_PROFILE lpSenderProfile,
  29. SYSTEMTIME tmSentTime,
  30. LPCTSTR lpctstrBodyTiff
  31. );
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #endif