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.

40 lines
861 B

  1. #ifndef __INFOWZRD_H_
  2. #define __INFOWZRD_H_
  3. #include <windows.h>
  4. #include <fxsapip.h>
  5. #include <faxsendw.h>
  6. HRESULT WINAPI
  7. FaxFreeSenderInformation(
  8. PFAX_PERSONAL_PROFILE pfppSender
  9. );
  10. HRESULT WINAPI
  11. FaxSetSenderInformation(
  12. PFAX_PERSONAL_PROFILE pfppSender
  13. );
  14. HRESULT WINAPI
  15. FaxGetSenderInformation(
  16. PFAX_PERSONAL_PROFILE pfppSender
  17. );
  18. HRESULT WINAPI
  19. FaxSendWizard(
  20. IN DWORD hWndOwner,
  21. IN DWORD dwFlags,
  22. IN LPTSTR lptstrServerName,
  23. IN LPTSTR lptstrPrinterName,
  24. IN LPFAX_SEND_WIZARD_DATA lpInitialData,
  25. OUT LPTSTR lptstrTifName,
  26. IN UINT cchstrTifName,
  27. OUT LPFAX_SEND_WIZARD_DATA lpFaxSendWizardData
  28. );
  29. HRESULT WINAPI
  30. FaxFreeSendWizardData(
  31. LPFAX_SEND_WIZARD_DATA lpFaxSendWizardData
  32. );
  33. #endif