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.

36 lines
1.2 KiB

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // File Name: fxocPrnt.h
  4. //
  5. // Abstract: Header file used by Fax Printer source files
  6. //
  7. // Environment: Windows XP / User Mode
  8. //
  9. // Copyright (c) 2000 Microsoft Corporation
  10. //
  11. // Revision History:
  12. //
  13. // Date: Developer: Comments:
  14. // ----- ---------- ---------
  15. // 15-Mar-2000 Oren Rosenbloom (orenr) Created
  16. //////////////////////////////////////////////////////////////////////////////
  17. #ifndef _FXOCPRNT_H_
  18. #define _FXOCPRNT_H_
  19. DWORD fxocPrnt_Init(void);
  20. DWORD fxocPrnt_Term(void);
  21. DWORD fxocPrnt_Install(const TCHAR *pszSubcomponentId,
  22. const TCHAR *pszInstallSection);
  23. DWORD fxocPrnt_InstallPrinter();
  24. DWORD fxocPrnt_Uninstall(const TCHAR *pszSubcomponentId,
  25. const TCHAR *pszUninstallSection);
  26. DWORD fxocPrnt_CreateLocalFaxPrinter(TCHAR *pszFaxPrinterName);
  27. void fxocPrnt_SetFaxPrinterName(const TCHAR* pszFaxPrinterName);
  28. void fxocPrnt_SetFaxPrinterShared(BOOL IsFaxPrinterShared);
  29. DWORD fxocPrnt_GetFaxPrinterName(TCHAR* pszFaxPrinterName,
  30. DWORD dwNumBufChars);
  31. #endif // _FXOCPRNT_H_