home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / ole / wordpad / strings.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  46 lines

  1. // strings.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "strings.h"
  15.  
  16. #ifdef _DEBUG
  17. #undef THIS_FILE
  18. static char BASED_CODE THIS_FILE[] = __FILE__;
  19. #endif
  20.  
  21. const TCHAR szWordPadClass[] = _T("WordPadClass");
  22. const TCHAR szLayout1[] = _T("Layout2");
  23. const TCHAR szLayout2[] = _T("LayoutAux2");
  24. const TCHAR szRegKey[] = _T("Microsoft\\Windows\\CurrentVersion\\Applets");
  25.  
  26. const TCHAR szTextSection[] = _T("Text");
  27. const TCHAR szRTFSection[] = _T("RTF");
  28. const TCHAR szWordSection[] = _T("Word6");
  29. const TCHAR szWriteSection[] =_T("Write");
  30. const TCHAR szIPSection[] = _T("IP");
  31. const TCHAR szWrap[] = _T("Wrap");
  32. const TCHAR szPageMargin[] = _T("PageMargin");
  33.  
  34. const TCHAR szSection[] = _T("Options");
  35. const TCHAR szWordSel[] = _T("WordSel");
  36. const TCHAR szUnits[] = _T("Units");
  37. const TCHAR szFrameRect[] = _T("FrameRect");
  38. const TCHAR szMaximized[] = _T("Maximized");
  39.  
  40. const TCHAR szSumInfo[] = _T("\005SummaryInformation");
  41.  
  42. const char szWordConverter[] = "MSWD6_32.WPC";
  43. const char szWriteConverter[] = "WRITE32.WPC";
  44.  
  45. const TCHAR szContents[] = _T("Contents");
  46.