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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      DLLUSER.H
  3.   Summary:   Include file for the DLLUSER skeleton code sample application.
  4.              In addition to class definitions, this DLLUSER.H file contains
  5.              definitions of the application's menu, string, and other
  6.              resource IDs.
  7.              Based largely on the EXESKEL.EXE source code, this include
  8.              file adds resource IDs for a new Test menu for exercising
  9.              the exported function calls provided by DLLSKEL.DLL.
  10.              For a comprehensive tutorial code tour of DLLUSER's
  11.              contents and offerings see the tutorial DLLUSER.HTM file.
  12.              For more specific technical details on the internal workings
  13.              see the comments dispersed throughout the DLLUSER source code.
  14.   Classes:   CMainWindow
  15.   Functions: WinMain
  16.   Origin:    8-3-95: atrent - Editor-inheritance from the EXESKEL source.
  17. ----------------------------------------------------------------------------
  18.   This file is part of the Microsoft COM Tutorial Code Samples.
  19.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  20.   This source code is intended only as a supplement to Microsoft
  21.   Development Tools and/or on-line documentation.  See these other
  22.   materials for detailed information regarding Microsoft code samples.
  23.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  24.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  25.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  26.   PARTICULAR PURPOSE.
  27. ==========================================================================+*/
  28. #if !defined(DLLUSER_H)
  29. #define DLLUSER_H
  30. #if defined(__cplusplus)
  31. /*C+C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C
  32.   Class:    CMainWindow
  33.   Summary:  Class to encapsulate the application's main window, menu, and
  34.             message dispatching behavior.
  35.   Methods:  CMainWindow
  36.               Constructor.
  37.             InitInstance
  38.               Creates a new instance of the main window.
  39. C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C-C*/
  40. class CMainWindow: public CVirWindow
  41. {
  42. public:
  43.   CMainWindow();
  44.   ~CMainWindow();
  45.   BOOL InitInstance(HINSTANCE, int);
  46.   TCHAR m_szFileName[MAX_PATH];
  47.   CMsgBox* m_pMsgBox;
  48. protected:
  49.   LRESULT WindowProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
  50. private:
  51.   LRESULT DoMenu(WPARAM wParam, LPARAM lParam);
  52.   WORD m_wWidth;
  53.   WORD m_wHeight;
  54.   TCHAR m_szHelpFile[MAX_PATH];
  55.   TCHAR m_szFileTitle[MAX_PATH];
  56.   TEXTMETRIC m_tm;
  57.   OPENFILENAME m_ofnFile;
  58. };
  59. #endif // __cplusplus
  60. // Window Class String Macros.
  61. #define MAIN_WINDOW_TITLE_STR       "DLLUSER: Tutorial Code Sample"
  62. #define MAIN_WINDOW_CLASS_NAME_STR  "DLLUSERWindow"
  63. #define MAIN_WINDOW_CLASS_MENU_STR  "DLLUSERMenu"
  64. // File Name String Macros.
  65. #define DLL_TUTFILE_STR             "dllskel.htm"
  66. // OpenFile-related String Macros.
  67. #define OFN_DEFAULTFILES_STR "All Files (*.*)*.*"
  68. #define OFN_DEFAULTTITLE_STR "Open File"
  69. // File Menu Command Identifiers.
  70. #define IDM_FILE_EXIT               1000
  71. // Test Menu Command Identifiers.
  72. #define IDM_TEST_DLLHELLO           1800
  73. #define IDM_TEST_DLLABOUT           1801
  74. // Help Menu Command Identifiers.
  75. #define IDM_HELP_CONTENTS           1900
  76. #define IDM_HELP_TUTORIAL           1901
  77. #define IDM_HELP_TUTDLL             1902
  78. #define IDM_HELP_READSOURCE         1903
  79. #define IDM_HELP_ABOUT              1904
  80. // Error-related String Identifiers.
  81. #define IDS_COMINITFAILED           2000
  82. #define IDS_APPINITFAILED           2001
  83. #define IDS_OUTOFMEMORY             2002
  84. #define IDS_UNICODEFAIL             2003
  85. #define IDS_ASSERT_FAIL             2200
  86. // Notice-related String Identifiers.
  87. #define IDS_NOTIMPLEMENTED          2301
  88. #endif