Leaked source code of windows server 2003
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.
|
|
//+---------------------------------------------------------------------------
//
// 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: INT_PTR CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); };
#endif //__cplusplus
#endif //__ABOUT_H__
|