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.

74 lines
2.2 KiB

  1. //---------------------------------------------------------------------------
  2. //
  3. // Copyright (c) Microsoft Corporation 1993-1994
  4. //
  5. // File: cstrings.c
  6. //
  7. // This file contains read-only string constants
  8. //
  9. // History:
  10. // 12-21-93 ScottH Created file
  11. //
  12. //---------------------------------------------------------------------------
  13. #include "brfprv.h"
  14. TCHAR const c_szNULL[] = TEXT("");
  15. TCHAR const c_szDelim[] = TEXT(" \t,");
  16. TCHAR const c_szAllFiles[] = TEXT("*.*");
  17. TCHAR const c_szEllipses[] = TEXT("...");
  18. // Class names
  19. // Executable and DLL names
  20. TCHAR const c_szEngineDLL[] = TEXT("SYNCENG.DLL");
  21. TCHAR const c_szCabinet[] = TEXT("Explorer.exe");
  22. TCHAR const c_szCabinetClass[] = TEXT("CabinetWClass");
  23. TCHAR const c_szWinHelpFile[] = TEXT("windows.hlp");
  24. TCHAR const c_szDllGetClassObject[] = TEXT("DllGetClassObject");
  25. TCHAR const c_szOpen[] = TEXT("open");
  26. // Ini file name
  27. TCHAR const c_szIniFile[] = TEXT("rover.ini");
  28. TCHAR const c_szDesktopIni[] = STR_DESKTOPINI;
  29. TCHAR const c_szRunWizard[] = TEXT("RunWizard");
  30. // Ini section names
  31. TCHAR const c_szIniSecExclude[] = TEXT("Exclude");
  32. TCHAR const c_szIniSecFilter[] = TEXT("Filter");
  33. TCHAR const c_szIniSecBriefcase[] = TEXT("Briefcase");
  34. #ifdef DEBUG
  35. TCHAR const c_szIniSecDebugUI[] = TEXT("SyncUIDebugOptions");
  36. #endif
  37. // Ini key names
  38. TCHAR const c_szIniKeyCLSID[] = TEXT("CLSID");
  39. TCHAR const c_szCLSID[] = TEXT("{85BBD920-42A0-1069-A2E4-08002B30309D}");
  40. TCHAR const c_szIniKeyPBar[] = TEXT("ProgressBar");
  41. TCHAR const c_szIniKeyFile[] = TEXT("File");
  42. TCHAR const c_szIniKeyType[] = TEXT("Type");
  43. #ifdef DEBUG
  44. TCHAR const c_szIniKeyTraceFlags[] = TEXT("TraceFlags");
  45. TCHAR const c_szIniKeyDumpFlags[] = TEXT("DumpFlags");
  46. TCHAR const c_szIniKeyBreakOnOpen[] = TEXT("BreakOnOpen");
  47. TCHAR const c_szIniKeyBreakOnClose[] = TEXT("BreakOnClose");
  48. TCHAR const c_szIniKeyBreakOnRunOnce[] = TEXT("BreakOnRunOnce");
  49. TCHAR const c_szIniKeyBreakOnValidate[] = TEXT("BreakOnValidate");
  50. TCHAR const c_szIniKeyBreakOnThreadAtt[] = TEXT("BreakOnThreadAttach");
  51. TCHAR const c_szIniKeyBreakOnThreadDet[] = TEXT("BreakOnThreadDetach");
  52. TCHAR const c_szIniKeyBreakOnProcessAtt[] = TEXT("BreakOnProcessAttach");
  53. TCHAR const c_szIniKeyBreakOnProcessDet[] = TEXT("BreakOnProcessDetach");
  54. #endif