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.

84 lines
2.0 KiB

  1. //---------------------------------------------------------------------------
  2. //
  3. // Copyright (c) Microsoft Corporation 1993-1994
  4. //
  5. // File: cstrings.h
  6. //
  7. //---------------------------------------------------------------------------
  8. #ifndef _CSTRINGS_H_
  9. #define _CSTRINGS_H_
  10. extern TCHAR const c_szNULL[];
  11. extern TCHAR const c_szZero[];
  12. extern TCHAR const c_szDelim[];
  13. extern TCHAR const c_szAllFiles[];
  14. extern TCHAR const c_szEllipses[];
  15. // Class names
  16. // Executable and DLL names
  17. extern TCHAR const c_szEngineDLL[];
  18. extern TCHAR const c_szCabinet[];
  19. extern TCHAR const c_szCabinetClass[];
  20. extern TCHAR const c_szWinHelpFile[];
  21. extern TCHAR const c_szDllGetClassObject[];
  22. extern TCHAR const c_szOpen[];
  23. #ifdef DEBUG
  24. // These declarations are located in err.c
  25. //
  26. extern TCHAR const c_szNewline[];
  27. extern TCHAR const c_szTrace[];
  28. extern TCHAR const c_szDbg[];
  29. extern TCHAR const c_szAssertFailed[];
  30. #endif
  31. // Ini file name
  32. extern TCHAR const c_szIniFile[];
  33. extern TCHAR const c_szDesktopIni[];
  34. extern TCHAR const c_szRunWizard[];
  35. // Ini section names
  36. extern TCHAR const c_szIniSecExclude[];
  37. extern TCHAR const c_szIniSecFilter[];
  38. extern TCHAR const c_szIniSecBriefcase[];
  39. #ifdef DEBUG
  40. extern TCHAR const c_szIniSecDebugUI[];
  41. #endif
  42. // Ini key names
  43. extern TCHAR const c_szIniKeyCLSID[];
  44. extern TCHAR const c_szCLSID[];
  45. extern TCHAR const c_szIniKeyPBar[];
  46. extern TCHAR const c_szIniKeyFile[];
  47. extern TCHAR const c_szIniKeyType[];
  48. #ifdef DEBUG
  49. extern TCHAR const c_szIniKeyTraceFlags[];
  50. extern TCHAR const c_szIniKeyDumpFlags[];
  51. extern TCHAR const c_szIniKeyBreakOnOpen[];
  52. extern TCHAR const c_szIniKeyBreakOnClose[];
  53. extern TCHAR const c_szIniKeyBreakOnRunOnce[];
  54. extern TCHAR const c_szIniKeyBreakOnValidate[];
  55. extern TCHAR const c_szIniKeyBreakOnThreadAtt[];
  56. extern TCHAR const c_szIniKeyBreakOnThreadDet[];
  57. extern TCHAR const c_szIniKeyBreakOnProcessAtt[];
  58. extern TCHAR const c_szIniKeyBreakOnProcessDet[];
  59. #endif
  60. #endif // _CSTRINGS_H_