DFV.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //+---------------------------------------------------------------------------
  2. //
  3. //  Microsoft Windows
  4. //  Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. //  File:       DFV.h
  7. //
  8. //  Contents:   globally defined constants, IDs and structures
  9. //
  10. //  History:    6-08-94   stevebl   Created
  11. //
  12. //----------------------------------------------------------------------------
  13. #ifndef __DFV_H__
  14. #define __DFV_H__
  15. #include <windows.h>
  16. #include <ole2.h>
  17. #include "message.h"
  18. // String Constants
  19. #define VER_FILEDESCRIPTION_STR     "Windows NT Docfile Viewer"
  20. #define VER_INTERNALNAME_STR        "DocFile Viewer"
  21. #define VER_ORIGINALFILENAME_STR    "DFVIEW.exe"
  22. #define HELPFILE_STR                "OLETools.hlp"
  23. #define MAIN_WINDOW_CLASS_NAME      "MainDFVWindow"
  24. #define MAIN_WINDOW_CLASS_MENU      MainDFVMenu
  25. #define MAIN_WINDOW_CLASS_MENU_STR  "MainDFVMenu"
  26. #define STREAM_VIEW_CLASS_NAME      "Stream Viewer"
  27. // Menu Command Identifiers
  28. #define IDM_EXIT                    1000
  29. #define IDM_OPEN                    1001
  30. #define IDM_CLOSE                   1002
  31. #define IDM_EXPAND                  1100
  32. #define IDM_EXPANDBRANCH            1101
  33. #define IDM_EXPANDALL               1102
  34. #define IDM_COLLAPSE                1103
  35. #define IDM_COLLAPSEALL             1104
  36. #define IDM_TOGGLE                  1105
  37. #define IDM_HELP                    1200
  38. #define IDM_ABOUT                   1201
  39. // Listbox Identifiers
  40. #define IDC_LISTBOX                 4000
  41. #define IDC_STREAMVIEW              4001
  42. // Bitmap Identifiers
  43. #define BMP_STREAM                  3000
  44. #define BMP_STORAGE                 3001
  45. // String Identifiers
  46. #define IDS_ERROR                   2000
  47. #define IDS_NOHELPFILE              2001
  48. #define IDS_OLEINCOMPATIBLE         2002
  49. #define IDS_OLEINITFAILED           2003
  50. #define IDS_ENUMSTATSTGFAILED       2004
  51. #define IDS_OPENSTORAGEFAILED       2005
  52. #define IDS_OPENSTREAMFAILED        2006
  53. #define IDS_ENUMELEMENTSFAILED      2007
  54. #define IDS_INSERTSTRINGFAILED      2008
  55. #define IDS_LOADBITMAPSFAILED       2009
  56. #define IDS_STGOPENSTORAGEFAILED    2010
  57. #define IDS_STMSTATFAILED           2011
  58. #define IDS_STMSEEKFAILED           2012
  59. #define IDS_STMREADFAILED           2013
  60. #define IDS_STMTITLETEXT            2014
  61. #define IDS_OUTOFMEMORY             2015
  62. #endif // __DFV_H__