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.

43 lines
957 B

  1. /*****************************************************************************\
  2. * MODULE: ppport.h
  3. *
  4. * Prototypes for private funcions in ppport.c. These functions handle port
  5. * related calls.
  6. *
  7. *
  8. * Copyright (C) 1996-1997 Microsoft Corporation
  9. * Copyright (C) 1996-1997 Hewlett Packard
  10. *
  11. * History:
  12. * 18-Nov-1996 HWP-Guys Initiated port from win95 to winNT
  13. *
  14. \*****************************************************************************/
  15. #ifndef _PPPORT_H
  16. #define _PPPORT_H
  17. BOOL PPEnumPorts(
  18. LPTSTR lpszServerName,
  19. DWORD dwLevel,
  20. LPBYTE pbPorts,
  21. DWORD cbBuf,
  22. LPDWORD pcbNeed,
  23. LPDWORD pcbRet);
  24. BOOL PPDeletePort(
  25. LPTSTR lpszServerName,
  26. HWND hWnd,
  27. LPTSTR lpszPortName);
  28. BOOL PPAddPort(
  29. LPTSTR lpszPortName,
  30. HWND hWnd,
  31. LPTSTR lpszMonitorName);
  32. BOOL PPConfigurePort(
  33. LPTSTR lpszServerName,
  34. HWND hWnd,
  35. LPTSTR lpszPortName);
  36. #endif