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.

43 lines
786 B

  1. // stdafx.cpp : source file that includes just the standard includes
  2. // stdafx.pch will be the pre-compiled header
  3. // stdafx.obj will contain the pre-compiled type information
  4. #define DEFINE_GLOBAL_VARIABLES
  5. #include "stdafx.h"
  6. #ifdef _ATL_STATIC_REGISTRY
  7. #include <statreg.h>
  8. #include <statreg.cpp>
  9. #endif
  10. #include <atlimpl.cpp>
  11. #include <atlwin.cpp>
  12. //
  13. // Code section
  14. //
  15. DWORD
  16. InitGlobalConfigFromReg(VOID)
  17. /*++
  18. Loads the global configuration parameters from registry and performs start-up checks
  19. Returns:
  20. Win32 error code. NO_ERROR on success
  21. --*/
  22. {
  23. DWORD dwError = NO_ERROR;
  24. DWORD dwMessageId = 0;
  25. HKEY hkey = NULL;
  26. DWORD dwMask = 0;
  27. return dwError;
  28. } // InitGlobalConfigFromReg()