[MSCONFIG]

* 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=61552
This commit is contained in:
Amine Khaldi 2014-01-06 21:01:43 +00:00
parent ac0c50152c
commit d57f8c166e
11 changed files with 24 additions and 17 deletions

View file

@ -5,4 +5,4 @@ extern HWND hFreeLdrPage;
INT_PTR CALLBACK FreeLdrPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
#endif
#endif /* _FREELDRPAGE_H_ */

View file

@ -5,4 +5,4 @@ extern HWND hGeneralPage;
INT_PTR CALLBACK GeneralPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
#endif
#endif /* _GENERALPAGE_H_ */

View file

@ -6,8 +6,16 @@
* COPYRIGHT: Copyright 2005-2006 Christoph von Wittich <Christoph@ApiViewer.de>
*
*/
#include "precomp.h"
#include "toolspage.h"
#include "srvpage.h"
#include "startuppage.h"
#include "freeldrpage.h"
#include "systempage.h"
#include "generalpage.h"
HINSTANCE hInst = 0;
HWND hMainWnd; /* Main Window */

View file

@ -1,26 +1,19 @@
#include <stdarg.h>
#define WIN32_NO_STATUS
#define _INC_WINDOWS
#define COM_NO_WINDOWS_H
#define NTOS_MODE_USER
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winreg.h>
#include <winsvc.h>
#include <winver.h>
#include <tchar.h>
#include <stdio.h>
#include <shlwapi.h>
#include <shlobj.h>
#include "resource.h"
#include "msconfig.h"
#include "toolspage.h"
#include "srvpage.h"
#include "startuppage.h"
#include "freeldrpage.h"
#include "systempage.h"
#include "generalpage.h"
#include "resource.h"
#define MAX_KEY_LENGTH 255
#define MAX_VALUE_NAME 16383

View file

@ -9,6 +9,9 @@
#include "precomp.h"
#include <winsvc.h>
#include <winver.h>
HWND hServicesPage;
HWND hServicesListCtrl;
HWND hServicesDialog;

View file

@ -6,4 +6,4 @@ extern HWND hServicesListCtrl;
INT_PTR CALLBACK ServicesPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
#endif
#endif /* _SVRPAGE_H_ */

View file

@ -6,4 +6,4 @@ extern HWND hStartupListCtrl;
INT_PTR CALLBACK StartupPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
#endif
#endif /* _STARTUPPAGE_H_ */

View file

@ -6,6 +6,7 @@
* COPYRIGHT: Copyright 2005-2006 Christoph von Wittich <Christoph@ApiViewer.de>
* 2011 Gregor Schneider <Gregor.Schneider@reactos.org>
*/
#include "precomp.h"
HWND hSystemPage;

View file

@ -5,4 +5,4 @@ extern HWND hSystemPage;
INT_PTR CALLBACK SystemPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
#endif
#endif /* _SYSTEMPAGE_H_ */

View file

@ -9,6 +9,8 @@
#include "precomp.h"
#include <shlwapi.h>
HWND hToolsPage;
HWND hToolsListCtrl;
HWND hToolsDialog;

View file

@ -6,4 +6,4 @@ extern HWND hToolsListCtrl;
INT_PTR CALLBACK ToolsPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
#endif
#endif /* _TOOLSPAGE_H_ */