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.

48 lines
835 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. wsregcfg.h
  5. Abstract:
  6. Registry access routines used by the Workstation (formerly in netlib.lib)
  7. Author:
  8. Jonathan Schwartz (JSchwart) 01-Feb-2001
  9. Environment:
  10. Only requires ANSI C (slash-slash comments, long external names).
  11. Revision History:
  12. 01-Feb-2001 JSchwart
  13. Moved from netlib.lib to wkssvc.dll
  14. --*/
  15. NET_API_STATUS
  16. WsSetConfigBool (
  17. IN LPNET_CONFIG_HANDLE ConfigHandle,
  18. IN LPTSTR Keyword,
  19. IN BOOL Value
  20. );
  21. NET_API_STATUS
  22. WsSetConfigDword (
  23. IN LPNET_CONFIG_HANDLE ConfigHandle,
  24. IN LPTSTR Keyword,
  25. IN DWORD Value
  26. );
  27. NET_API_STATUS
  28. WsSetConfigTStrArray(
  29. IN LPNET_CONFIG_HANDLE ConfigHandle,
  30. IN LPTSTR Keyword,
  31. IN LPTSTR_ARRAY Value
  32. );