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.

50 lines
1.1 KiB

  1. /***************************************************************************/
  2. /** Microsoft Windows **/
  3. /** Copyright(c) Microsoft Corp., 1991, 1992 **/
  4. /***************************************************************************/
  5. /****************************************************************************
  6. hearts.h
  7. Aug 92, JimH
  8. May 93, JimH chico port
  9. declaration of theApp class
  10. ****************************************************************************/
  11. #ifndef HEARTS_INC
  12. #define HEARTS_INC
  13. #ifndef STRICT
  14. #define STRICT
  15. #endif
  16. //#include <windows.h>
  17. #include <afxwin.h> // MFC core and standard components
  18. #include <afxext.h> // MFC extensions
  19. #include <afxcmn.h> // MFC support for Windows Common Controls
  20. #include <shellapi.h>
  21. //#include <shell.h>
  22. #include <afxwin.h>
  23. #include <htmlhelp.h>
  24. class CTheApp : public CWinApp
  25. {
  26. public:
  27. BOOL InitInstance();
  28. };
  29. #endif
  30. #if defined (WINDOWS_ME) && ! defined (USE_MIRRORING)
  31. extern DWORD meMsgBox;
  32. extern DWORD meSystem;
  33. //#define MessageBox(h,s,c,f) MessageBoxEx(h,s,c,f|meMsgBox,0)
  34. #endif