47 lines
1,005 B
C++
47 lines
1,005 B
C++
//+---------------------------------------------------------------------------
|
|
//
|
|
// 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__
|
|
|