[CHARMAP]
authorAmine Khaldi <amine.khaldi@reactos.org>
Sat, 4 Jan 2014 14:06:39 +0000 (14:06 +0000)
committerAmine Khaldi <amine.khaldi@reactos.org>
Sat, 4 Jan 2014 14:06:39 +0000 (14:06 +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=61528

reactos/base/applications/charmap/about.c
reactos/base/applications/charmap/charmap.c
reactos/base/applications/charmap/lrgcell.c
reactos/base/applications/charmap/map.c
reactos/base/applications/charmap/precomp.h
reactos/base/applications/charmap/settings.c

index 02787f2..60716fe 100644 (file)
@@ -7,10 +7,8 @@
  *
  */
 
-
 #include <precomp.h>
 
-
 static
 INT_PTR
 CALLBACK
index eefa919..ed00aa1 100644 (file)
@@ -9,6 +9,9 @@
 
 #include <precomp.h>
 
+#include <commctrl.h>
+#include <richedit.h>
+
 #define ID_ABOUT    0x1
 
 HINSTANCE hInstance;
index 4894202..b5fef4d 100644 (file)
@@ -9,7 +9,6 @@
 
 #include <precomp.h>
 
-
 static
 HFONT
 SetLrgFont(PMAP infoPtr)
index 8104ce2..0029656 100644 (file)
@@ -9,6 +9,8 @@
 
 #include <precomp.h>
 
+#include <stdlib.h>
+
 static const WCHAR szMapWndClass[] = L"FontMapWnd";
 static const WCHAR szLrgCellWndClass[] = L"LrgCellWnd";
 
index 8ed87cd..83c1417 100644 (file)
@@ -5,14 +5,7 @@
 #include <windef.h>
 #include <winbase.h>
 #include <winuser.h>
-#include <winreg.h>
 #include <wingdi.h>
-#include <windowsx.h>
-#include <tchar.h>
-//#include <stdio.h>
-#include <stdlib.h>
-#include <commctrl.h>
-#include <richedit.h>
 
 #include "resource.h"
 
index 4eae8d9..e326df5 100644 (file)
@@ -9,6 +9,9 @@
 
 #include <precomp.h>
 
+#include <winreg.h>
+#include <windowsx.h>
+#include <tchar.h>
 
 const TCHAR g_szGeneralRegKey[] = _T("Software\\Microsoft\\CharMap");
 HWND hWnd;