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.

52 lines
912 B

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. RxConn.h
  5. Abstract:
  6. This file contains structures, function prototypes, and definitions
  7. for the remote (downlevel) connection APIs.
  8. Author:
  9. John Rogers (JohnRo) 16-Jul-1991
  10. Environment:
  11. Portable to any flat, 32-bit environment. (Uses Win32 typedefs.)
  12. Requires ANSI C extensions: slash-slash comments, long external names.
  13. Notes:
  14. You must include <windef.h> and <lmcons.h> before this file.
  15. Revision History:
  16. 19-Jul-1991 JohnRo
  17. Implement downlevel NetConnectionEnum.
  18. --*/
  19. #ifndef _RXCONN_
  20. #define _RXCONN_
  21. NET_API_STATUS
  22. RxNetConnectionEnum (
  23. IN LPTSTR UncServerName,
  24. IN LPTSTR Qualifier,
  25. IN DWORD Level,
  26. OUT LPBYTE *BufPtr,
  27. IN DWORD PrefMaxSize,
  28. OUT LPDWORD EntriesRead,
  29. OUT LPDWORD TotalEntries,
  30. IN OUT LPDWORD ResumeHandle OPTIONAL
  31. );
  32. #endif // _RXCONN_