Source code of Windows XP (NT5)
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.

51 lines
1.5 KiB

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name :
  4. setup.h
  5. Abstract :
  6. Defines the macros used in setup.c
  7. Author :
  8. Sriram (t-srisam) July 1999
  9. --*/
  10. #define APPCERTDLLS_REG_NAME L"System\\CurrentControlSet\\Control\\Session Manager\\AppCertDlls"
  11. #define AUTHORIZEDAPPS_REG_NAME L"System\\CurrentControlSet\\Control\\Terminal Server\\AuthorizedApplications"
  12. #define APPSECDLL_VAL L"AppSecDll"
  13. #define HELP_MSG_SIZE 800
  14. #define IDS_ERROR 900
  15. #define IDS_ERROR_TEXT 901
  16. #define IDS_FILE_ALREADY_EXISTS 902
  17. #define IDS_FILE_NOT_FOUND 903
  18. #define IDS_SUCCESS 904
  19. #define IDS_SUCCESS_TEXT 905
  20. #define IDS_REG_ERROR 906
  21. #define IDS_APPFILE_NOT_FOUND 907
  22. #define IDS_WARNING 908
  23. #define IDS_HELP_MESSAGE 909
  24. #define IDS_HELP_TITLE 910
  25. #define IDS_WARNING_TITLE 911
  26. #define IDS_ARGUMENT_ERROR 912
  27. #define IDS_APPS_WARNING 913
  28. #define IDS_ERROR_LOAD 914
  29. #define MAX_FILE_APPS 100
  30. #define AUTHORIZED_APPS_KEY L"ApplicationList"
  31. #define FENABLED_KEY L"fEnabled"
  32. VOID AddEveryoneToRegKey( WCHAR *RegPath ) ;
  33. BOOL LoadInitApps( HKEY, BOOL, CHAR *) ;
  34. VOID ResolveName ( LPCWSTR appname, WCHAR *ResolvedName ) ;