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.

46 lines
1.0 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  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. #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: 6-08-94 stevebl Created
  30. //
  31. //----------------------------------------------------------------------------
  32. class CAbout: public CHlprDialog
  33. {
  34. public:
  35. INT_PTR CALLBACK DialogProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
  36. };
  37. #endif //__cplusplus
  38. #endif //__ABOUT_H__