mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1005 B
46 lines
1005 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: about.h
|
|
//
|
|
// Contents: definition for an about dialog box class
|
|
//
|
|
// Classes: CAbout
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 6-08-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: 6-08-94 stevebl Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
class CAbout: public CHlprDialog
|
|
{
|
|
public:
|
|
BOOL DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
|
};
|
|
|
|
#endif //__cplusplus
|
|
|
|
#endif //__ABOUT_H__
|
|
|