Source code of Windows XP (NT5)
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.

53 lines
832 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. MSERVER.H
  5. Abstract:
  6. Contains mapping functions to present netcmd with versions
  7. of the Net32 APIs which use ASCII instead of Unicode.
  8. This module maps the NetServer APIs.
  9. Author:
  10. Shanku Niyogi (W-ShankN) 15-Oct-1991
  11. Environment:
  12. User Mode - Win32
  13. Revision History:
  14. 15-Oct-1991 W-ShankN
  15. Separated from port1632.h, 32macro.h
  16. 02-Apr-1992 beng
  17. Added xport apis
  18. --*/
  19. DWORD
  20. MNetServerEnum(
  21. LPTSTR pszServer,
  22. DWORD nLevel,
  23. LPBYTE * ppbBuffer,
  24. DWORD * pcEntriesRead,
  25. DWORD flServerType,
  26. LPTSTR pszDomain
  27. );
  28. DWORD
  29. MNetServerGetInfo(
  30. LPTSTR ptszServer,
  31. DWORD nLevel,
  32. LPBYTE * ppbBuffer
  33. );
  34. DWORD
  35. MNetServerSetInfoLevel2(
  36. LPBYTE pbBuffer
  37. );