[SOL]
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 4 Jan 2014 14:25:09 +0000 (14:25 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 4 Jan 2014 14:25:09 +0000 (14:25 +0000)
* Remove one time inclusions from the main header and put them back where they belong.
* Cleanup the main header.
CORE-7716

svn path=/trunk/; revision=61530

reactos/base/applications/games/solitaire/solcreate.cpp
reactos/base/applications/games/solitaire/solgame.cpp
reactos/base/applications/games/solitaire/solitaire.cpp
reactos/base/applications/games/solitaire/solitaire.h

index 619db40..38087d9 100644 (file)
@@ -1,6 +1,11 @@
-
 #include "solitaire.h"
 
+#include <winreg.h>
+#include <commctrl.h>
+#include <tchar.h>
+
+#include "resource.h"
+
 TCHAR szHelpPath[MAX_PATH];
 
 DWORD        dwAppStartTime;
index afb4481..f2b6073 100644 (file)
@@ -1,15 +1,5 @@
-#define WIN32_NO_STATUS
-#include <stdarg.h>
-#include <windef.h>
-#include <winbase.h>
-#include <winreg.h>
-#include <winuser.h>
-#include <commctrl.h>
-#include <tchar.h>
 #include <cardlib.h>
 
-#include "resource.h"
-
 extern CardWindow SolWnd;
 extern TCHAR szAppName[];
 extern bool fGameStarted;
@@ -49,7 +39,6 @@ extern CardRegion *pPile;
 extern CardRegion *pSuitStack[];
 extern CardRegion *pRowStack[];
 
-
 bool CARDLIBPROC RowStackDragProc(CardRegion &stackobj, int iNumCards);
 bool CARDLIBPROC RowStackDropProc(CardRegion &stackobj,  CardStack &dragcards);