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.

63 lines
1.1 KiB

  1. #ifndef __REGISTRY_H_
  2. #define __REGISTRY_H_
  3. #include <windows.h>
  4. #include <fxsapip.h>
  5. #include <faxsendw.h>
  6. #ifdef __cplusplus
  7. extern "C"{
  8. #endif
  9. HRESULT
  10. SaveLastReciptInfo(
  11. DWORD dwReceiptDeliveryType,
  12. LPTSTR szReceiptAddress
  13. );
  14. HRESULT
  15. RestoreLastReciptInfo(
  16. DWORD* pdwReceiptDeliveryType,
  17. LPTSTR * lpptReceiptDeliveryProfile
  18. );
  19. HRESULT
  20. SaveLastRecipientInfo(
  21. PFAX_PERSONAL_PROFILE pfppRecipient,
  22. DWORD dwLastRecipientCountryId
  23. );
  24. HRESULT
  25. RestoreLastRecipientInfo(
  26. DWORD* pdwNumberOfRecipients,
  27. PFAX_PERSONAL_PROFILE* lppFaxSendWizardData,
  28. DWORD* pdwLastRecipientCountryId
  29. );
  30. HRESULT
  31. RestoreCoverPageInfo(
  32. LPTSTR* lpptstrCoverPageFileName
  33. );
  34. HRESULT
  35. SaveCoverPageInfo(
  36. LPTSTR lptstrCoverPageFileName
  37. );
  38. HRESULT
  39. RestoreUseDialingRules(
  40. BOOL* pbUseDialingRules,
  41. BOOL* pbUseOutboundRouting
  42. );
  43. HRESULT
  44. SaveUseDialingRules(
  45. BOOL bUseDialingRules,
  46. BOOL bUseOutboundRouting
  47. );
  48. BOOL IsOutlookDefaultClient();
  49. #ifdef __cplusplus
  50. }
  51. #endif
  52. #endif