windows-nt/Source/XPSP1/NT/com/ole2ui32/test/about.h

47 lines
1,005 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
//+---------------------------------------------------------------------------
//
// 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__