ABOUT.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- //+---------------------------------------------------------------------------
- //
- // Microsoft Windows
- // Copyright 1992 - 1997 Microsoft Corporation.
- //
- // File: about.h
- //
- // Contents: definition for the About dialog box class
- //
- // Classes: CAbout
- //
- // Functions:
- //
- // History: 4-12-94 stevebl Created
- //
- //----------------------------------------------------------------------------
- #ifndef __ABOUT_H__
- #define __ABOUT_H__
- #include <cdialog.h>
- #ifdef __cplusplus
- //+---------------------------------------------------------------------------
- //
- // Class: CAbout
- //
- // Purpose: implements the about dialog box
- //
- // Interface: DialogProc -- dialog procedure
- //
- // History: 4-28-94 stevebl Created
- //
- //----------------------------------------------------------------------------
- class CAbout: public CHlprDialog
- {
- public:
- BOOL DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
- };
- #endif //__cplusplus
- #endif //__ABOUT_H__