Leaked source code of windows server 2003
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.

54 lines
940 B

  1. /*++
  2. Copyright (c) Microsoft Corporation. All rights reserved.
  3. Module Name:
  4. efsputil.h
  5. --*/
  6. #ifndef _EFSPUTIL_H_
  7. #define _EFSPUTIL_H_
  8. typedef struct tag_FSPI_BRAND_INFO
  9. {
  10. DWORD dwSizeOfStruct;
  11. LPWSTR lptstrSenderTsid;
  12. LPWSTR lptstrRecipientPhoneNumber;
  13. LPWSTR lptstrSenderCompany;
  14. SYSTEMTIME tmDateTime;
  15. } FSPI_BRAND_INFO;
  16. typedef const FSPI_BRAND_INFO * LPCFSPI_BRAND_INFO;
  17. typedef FSPI_BRAND_INFO * LPFSPI_BRAND_INFO;
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. HRESULT
  22. WINAPI
  23. FaxBrandDocument(
  24. LPCTSTR lpctstrFile,
  25. LPCFSPI_BRAND_INFO lpcBrandInfo
  26. );
  27. HRESULT
  28. WINAPI
  29. FaxRenderCoverPage(
  30. LPCTSTR lpctstrTargetFile,
  31. LPCFSPI_COVERPAGE_INFO lpCoverPageInfo,
  32. LPCFSPI_PERSONAL_PROFILE lpRecipientProfile,
  33. LPCFSPI_PERSONAL_PROFILE lpSenderProfile,
  34. SYSTEMTIME tmSentTime,
  35. LPCTSTR lpctstrBodyTiff
  36. );
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif