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.

49 lines
696 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1997 - 1997
  3. All rights reserved.
  4. Module Name:
  5. permc.cxx
  6. Abstract:
  7. Per Machine Connections
  8. Author:
  9. Ramanathan Venkatapathy (3/18/97)
  10. Revision History:
  11. --*/
  12. #ifndef _PERMC_HXX
  13. #define _PERMC_HXX
  14. VOID
  15. vAddPerMachineConnection(
  16. IN LPCTSTR pServer,
  17. IN LPCTSTR pPrinterName,
  18. IN LPCTSTR pProvider,
  19. IN BOOL bQuiet
  20. );
  21. VOID
  22. vDeletePerMachineConnection(
  23. IN LPCTSTR pServer,
  24. IN LPCTSTR pPrinterName,
  25. IN BOOL bQuiet
  26. );
  27. VOID
  28. vEnumPerMachineConnections(
  29. IN LPCTSTR pServer,
  30. IN LPCTSTR pFileName,
  31. IN BOOL bQuiet
  32. );
  33. #endif