home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / activedocument / dfv / about.h < prev    next >
C/C++ Source or Header  |  1995-02-13  |  1KB  |  47 lines

  1. //+---------------------------------------------------------------------------
  2. //
  3. //  Microsoft Windows
  4. //  Copyright (C) Microsoft Corporation, 1992 - 1995.
  5. //
  6. //  File:       about.h
  7. //
  8. //  Contents:   definition for an about dialog box class
  9. //
  10. //  Classes:    CAbout
  11. //
  12. //  Functions:
  13. //
  14. //  History:    6-08-94   stevebl   Created
  15. //
  16. //----------------------------------------------------------------------------
  17.  
  18. #ifndef __ABOUT_H__
  19. #define __ABOUT_H__
  20.  
  21. #include <cdialog.h>
  22.  
  23. #ifdef __cplusplus
  24.  
  25. //+---------------------------------------------------------------------------
  26. //
  27. //  Class:      CAbout
  28. //
  29. //  Purpose:    implements the about dialog box
  30. //
  31. //  Interface:  DialogProc -- dialog procedure
  32. //
  33. //  History:    6-08-94   stevebl   Created
  34. //
  35. //----------------------------------------------------------------------------
  36.  
  37. class CAbout: public CHlprDialog
  38. {
  39. public:
  40.     BOOL DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  41. };
  42.  
  43. #endif //__cplusplus
  44.  
  45. #endif //__ABOUT_H__
  46.  
  47.