regkey.h 687 B

123456789101112131415161718192021
  1. #pragma once
  2. #ifdef _ALLEGIANCE_DEV_
  3. #define ALLEGIANCE_REGISTRY_KEY_ROOT "Software\\Microsoft\\Microsoft Games\\Allegiance\\Dev"
  4. #else
  5. #define ALLEGIANCE_REGISTRY_KEY_ROOT "Software\\Microsoft\\Microsoft Games\\Allegiance\\1.0"
  6. #endif
  7. #if !defined(ALLSRV_STANDALONE)
  8. const char c_szSvcName[] = "AllSrv";
  9. #define HKLM_FedSrv "SYSTEM\\CurrentControlSet\\Services\\AllSrv"
  10. #define HKLM_AllSrvUI ALLEGIANCE_REGISTRY_KEY_ROOT "\\Server"
  11. #else // !defined(ALLSRV_STANDALONE)
  12. const char c_szSvcName[] = "AllSrv32";
  13. #define HKLM_FedSrv ALLEGIANCE_REGISTRY_KEY_ROOT "\\Server"
  14. #define HKLM_AllSrvUI HKLM_FedSrv
  15. #endif // !defined(ALLSRV_STANDALONE)