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.

60 lines
1.1 KiB

  1. /*++
  2. Copyright (c) 1991 Microsoft Corporation
  3. Module Name:
  4. RxDomain.h
  5. Abstract:
  6. This file contains structures, function prototypes, and definitions
  7. for the remote (downlevel) domain 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. 16-Jul-1991 JohnRo
  17. Implement downlevel NetGetDCName.
  18. --*/
  19. //
  20. // User Class
  21. //
  22. #ifndef _RXDOMAIN_
  23. #define _RXDOMAIN_
  24. NET_API_STATUS
  25. RxNetGetDCName (
  26. IN LPTSTR UncServerName,
  27. IN LPTSTR DomainName OPTIONAL,
  28. OUT LPBYTE *BufPtr
  29. );
  30. NET_API_STATUS
  31. RxNetLogonEnum (
  32. IN LPTSTR UncServerName,
  33. IN DWORD Level,
  34. OUT LPBYTE *BufPtr,
  35. IN DWORD PrefMaxSize,
  36. OUT LPDWORD EntriesRead,
  37. OUT LPDWORD TotalEntries,
  38. IN OUT LPDWORD ResumeHandle OPTIONAL
  39. );
  40. #endif // _RXDOMAIN_