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.

42 lines
821 B

  1. #include "precomp.h"
  2. #define COUNTOF(x) (sizeof x/sizeof *x)
  3. //----------------------------------------------------------------------------
  4. //
  5. // Microsoft Windows
  6. // Copyright (C) Microsoft Corporation, 2001.
  7. //
  8. // File: Dllsvr.c
  9. //
  10. // Contents: Wifi Policy management Snapin
  11. //
  12. //
  13. // History: TaroonM
  14. // 10/30/01
  15. //
  16. //----------------------------------------------------------------------------
  17. DWORD
  18. DllRegisterServer()
  19. {
  20. DWORD dwError = 0;
  21. HKEY hRegistryKey = NULL;
  22. HKEY hOakleyKey = NULL;
  23. DWORD dwDisposition = 0;
  24. DWORD dwTypesSupported = 7;
  25. HKEY hPolicyLocationKey = NULL;
  26. HANDLE hPolicyStore = NULL;
  27. return (dwError);
  28. }
  29. DWORD
  30. DllUnregisterServer()
  31. {
  32. return (ERROR_SUCCESS);
  33. }