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.

58 lines
833 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. nexus.h
  5. Abstract:
  6. Contains some thunking for Net APIs
  7. Author:
  8. Danilo Almeida (t-danal) 06-27-96
  9. Revision History:
  10. --*/
  11. #ifndef __OLEDS_NEXUS__
  12. #define __OLEDS_NEXUS__
  13. #include <windows.h>
  14. #include <lm.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. NET_API_STATUS NET_API_FUNCTION
  19. NetGetDCNameW (
  20. LPCWSTR servername,
  21. LPCWSTR domainname,
  22. LPBYTE *bufptr
  23. );
  24. NET_API_STATUS NET_API_FUNCTION
  25. NetServerEnumW(
  26. LPCWSTR ServerName,
  27. DWORD Level,
  28. LPBYTE * BufPtr,
  29. DWORD PrefMaxLen,
  30. LPDWORD EntriesRead,
  31. LPDWORD TotalEntries,
  32. DWORD ServerType,
  33. LPCWSTR Domain,
  34. LPDWORD ResumeHandle
  35. );
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39. #endif // __OLEDS_NEXUS__