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.

31 lines
1.1 KiB

  1. //+----------------------------------------------------------------------------
  2. //
  3. // File: base_str.h
  4. //
  5. // Module: Common Strings for all Modules to Utilize
  6. //
  7. // Synopsis: Header file for basic string constants used throughout such as
  8. // "Connection Manager"
  9. //
  10. // NOTE: This header should be kept as lightweight as possible because it
  11. // is included some very lightweight classes. Its purpose is to
  12. // eliminate excessive repetition of key identifiers such
  13. // as "Connection Manager"
  14. //
  15. // Copyright (c) 1998-1999 Microsoft Corporation
  16. //
  17. // Author: nickball Created 10/09/98
  18. //
  19. //+----------------------------------------------------------------------------
  20. #ifndef _CM_BASE_STR
  21. #define _CM_BASE_STR
  22. //
  23. // c_pszCmSection defines the application section in the .CMS file.
  24. //
  25. const TCHAR* const c_pszCmSection = TEXT("Connection Manager");
  26. const TCHAR* const c_pszVersion = TEXT("Version");
  27. const TCHAR* const c_pszPbk = TEXT("PBK");
  28. #endif // _CM_BASE_STR