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.

47 lines
860 B

  1. /*++
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. strings.c
  5. Abstract:
  6. String Constant definitions & initializations
  7. Author:
  8. Bob Watson (a-robw)
  9. Revision History:
  10. 24 Aug 1994 Written
  11. --*/
  12. #include <windows.h>
  13. // string definitions
  14. //
  15. //
  16. //
  17. // character strings
  18. //
  19. LPCTSTR cszBackslash = TEXT("\\");
  20. LPCTSTR cszDoubleQuote = TEXT("\"");
  21. LPCTSTR cmszEmptyString = TEXT ("\0\0");
  22. LPCTSTR cszEmptyString = TEXT ("\0");
  23. LPCTSTR cszSpace = TEXT(" ");
  24. LPCTSTR cszKeySeparator = TEXT(" = ");
  25. LPCTSTR cszDot = TEXT(".");
  26. LPCTSTR cszDotDot = TEXT("..");
  27. LPCTSTR cszStarDotStar = TEXT("*.*");
  28. LPCTSTR cszLocalMachine = TEXT("HKEY_LOCAL_MACHINE");
  29. LPCTSTR cszClassesRoot = TEXT("HKEY_CLASSES_ROOT");
  30. LPCTSTR cszCurrentUser = TEXT("HKEY_CURRENT_USER");
  31. LPCTSTR cszUsers = TEXT("HKEY_USERS");
  32. LPCTSTR cszInherit = TEXT("INHERIT");