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

Windows编程

开发平台:

Visual C++

  1. /*+==========================================================================
  2.   File:      APTSERVE.H
  3.   Summary:   Include file for the APTSERVE code sample application.
  4.              In addition to class definitions, this APTSERVE.H file
  5.              contains definitions of the application's menu, string,
  6.              and other resource IDs.
  7.              For a comprehensive tutorial code tour of APTSERVE's
  8.              contents and offerings see the tutoorial APTSERVE.HTM file.
  9.              For more specific technical details on the internal workings
  10.              see the comments dispersed throughout the APTSERVE source code.
  11.   Classes:   CMainWindow
  12.   Functions: WinMain
  13.   Origin:    3-20-96: atrent - Editor-inheritance from the LOCSERVE source.
  14. ----------------------------------------------------------------------------
  15.   This file is part of the Microsoft COM Tutorial Code Samples.
  16.   Copyright (C) Microsoft Corporation, 1997.  All rights reserved.
  17.   This source code is intended only as a supplement to Microsoft
  18.   Development Tools and/or on-line documentation.  See these other
  19.   materials for detailed information regarding Microsoft code samples.
  20.   THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  21.   KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  22.   IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  23.   PARTICULAR PURPOSE.
  24. ==========================================================================+*/
  25. #if !defined(APTSERVE_H)
  26. #define APTSERVE_H
  27. #ifdef __cplusplus
  28. /*C+C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C+++C
  29.   Class:    CMainWindow
  30.   Summary:  Class to encapsulate the application's main window, menu, and
  31.             message dispatching behavior.
  32.   Methods:  CMainWindow
  33.               Constructor.
  34.             InitInstance
  35.               Creates a new instance of the main window.
  36. C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C---C-C*/
  37. class CMainWindow: public CVirWindow
  38. {
  39. public:
  40.   CMainWindow();
  41.   ~CMainWindow();
  42.   BOOL InitInstance(HINSTANCE, int);
  43.   // Methods for registering and unregistering this server.
  44.   BOOL RegisterServer(void);
  45.   BOOL UnregisterServer(void);
  46.   // For message box dialogs.
  47.   CMsgBox*  m_pMsgBox;
  48.   CSendLog* m_pMsgLog;
  49. protected:
  50.   LRESULT WindowProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
  51. private:
  52.   LRESULT DoMenu(WPARAM wParam, LPARAM lParam);
  53. };
  54. #endif // __cplusplus
  55. // Window Class String Macros.
  56. #define MAIN_WINDOW_TITLE_STR       "APTSERVE: Tutorial Code Sample"
  57. #define MAIN_WINDOW_CLASS_NAME_STR  "APTSERVEWindow"
  58. #define MAIN_WINDOW_CLASS_MENU_STR  "APTSERVEMenu"
  59. #define CLIENT_WINDOW_TITLE         "APTCLIEN: Tutorial Code Sample"
  60. // File Menu Command Identifiers.
  61. #define IDM_FILE_EXIT               1000
  62. // Log Menu Command Identifiers.
  63. #define IDM_LOG_LOGCLEAR            1890
  64. #define IDM_LOG_COPYCLIP            1891
  65. // Help Menu Command Identifiers.
  66. #define IDM_HELP_ABOUT              1905
  67. // Error-related String Identifiers.
  68. #define IDS_COMINITFAILED           2000
  69. #define IDS_APPINITFAILED           2001
  70. #define IDS_OUTOFMEMORY             2002
  71. #define IDS_NOHELPFILE              2003
  72. #define IDS_NOUNICODE               2004
  73. #define IDS_NOSERVER                2005
  74. #define IDS_ASSERT_FAIL             2200
  75. // Notice-related String Identifiers.
  76. #define IDS_NOTIMPLEMENTED          2301
  77. // Log Message String Identifiers.
  78. #define IDS_LOGTO_CLIENT            2400
  79. #define IDS_LOGTO_SERVER            2401
  80. #endif  // APTSERVE_H