ABOUT.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

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