Source code of Windows XP (NT5)
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.

17 lines
215 B

  1. #ifndef APPLICATION_H
  2. #define APPLICATION_H
  3. #include "stdafx.h"
  4. class Application : public CWinApp
  5. {
  6. public:
  7. virtual BOOL InitInstance();
  8. afx_msg void OnAppAbout();
  9. DECLARE_MESSAGE_MAP()
  10. };
  11. #endif