ABOUT.CXX
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- //+---------------------------------------------------------------------------
- //
- // Microsoft Windows
- // Copyright 1992 - 1997 Microsoft Corporation.
- //
- // File: about.cxx
- //
- // Contents: implementation for the about dialog box
- //
- // Classes: CAbout
- //
- // Functions:
- //
- // History: 4-12-94 stevebl Created
- //
- //----------------------------------------------------------------------------
- #include <windows.h>
- #include "about.h"
- //+---------------------------------------------------------------------------
- //
- // Member: CAbout::DialogProc
- //
- // Synopsis: dialog proc for the About dialog box
- //
- // Arguments: [uMsg] - message
- // [wParam] - first message parameter
- // [lParam] - second message parameter
- //
- // History: 4-12-94 stevebl Created
- //
- //----------------------------------------------------------------------------
- BOOL CAbout::DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
- {
- switch (uMsg)
- {
- case WM_INITDIALOG:
- return(TRUE);
- case WM_COMMAND:
- if (LOWORD(wParam) == IDOK
- || LOWORD(wParam) == IDCANCEL)
- {
- EndDialog(hwndDlg, TRUE);
- return(TRUE);
- }
- }
- return(FALSE);
- }