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.

30 lines
787 B

  1. //---------------------------------------------------------------------------
  2. //
  3. // Copyright (c) Microsoft Corporation 1993-1996
  4. //
  5. // File: cstrings.c
  6. //
  7. // This file contains read-only string constants
  8. //
  9. // History:
  10. // 12-23-93 ScottH Created
  11. // 11-06-95 ScottH Ported to NT
  12. //
  13. //---------------------------------------------------------------------------
  14. #include "proj.h"
  15. #pragma data_seg(DATASEG_READONLY)
  16. TCHAR const FAR c_szWinHelpFile[] = TEXT("devmgr.hlp");
  17. // Registry key names
  18. TCHAR const FAR c_szPortClass[] = TEXT("ports");
  19. TCHAR const FAR c_szDeviceDesc[] = TEXT("DeviceDesc");
  20. TCHAR const FAR c_szPortName[] = TEXT("PortName");
  21. TCHAR const FAR c_szFriendlyName[] = REGSTR_VAL_FRIENDLYNAME;
  22. TCHAR const FAR c_szDCB[] = TEXT("DCB");
  23. #pragma data_seg()