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.

23 lines
290 B

  1. #ifndef ABOUTDIALOG_H
  2. #define ABOUTDIALOG_H
  3. #include "stdafx.h"
  4. #include "resource.h"
  5. class AboutDialog : public CDialog
  6. {
  7. public:
  8. enum
  9. {
  10. IDD = IDD_ABOUT,
  11. };
  12. AboutDialog(CWnd* parent = NULL);
  13. virtual BOOL OnInitDialog();
  14. };
  15. #endif