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.

57 lines
1.0 KiB

  1. /*++
  2. Copyright (c) 1991-1992 Microsoft Corporation
  3. Module Name:
  4. RxConfig.h
  5. Abstract:
  6. Prototypes for down-level remoted RxNetConfig routines
  7. Author:
  8. Richard Firth (rfirth) 28-May-1991
  9. Revision History:
  10. 28-May-1991 RFirth
  11. Created dummy version of this file.
  12. 23-Oct-1991 JohnRo
  13. Implement remote NetConfig APIs.
  14. 14-Oct-1992 JohnRo
  15. RAID 9357: server mgr: can't add to alerts list on downlevel.
  16. --*/
  17. #ifndef _RXCONFIG_
  18. #define _RXCONFIG_
  19. NET_API_STATUS
  20. RxNetConfigGet (
  21. IN LPTSTR server,
  22. IN LPTSTR component,
  23. IN LPTSTR parameter,
  24. OUT LPBYTE *bufptr
  25. );
  26. NET_API_STATUS
  27. RxNetConfigGetAll (
  28. IN LPTSTR server,
  29. IN LPTSTR component,
  30. OUT LPBYTE *bufptr
  31. );
  32. NET_API_STATUS
  33. RxNetConfigSet (
  34. IN LPTSTR UncServerName,
  35. IN LPTSTR reserved1 OPTIONAL,
  36. IN LPTSTR component,
  37. IN DWORD level,
  38. IN DWORD reserved2,
  39. IN LPBYTE buf,
  40. IN DWORD reserved3
  41. );
  42. #endif // _RXCONFIG_