mirror of
https://github.com/reactos/reactos.git
synced 2025-07-12 16:44:13 +00:00
[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:
parent
ac0c50152c
commit
d57f8c166e
11 changed files with 24 additions and 17 deletions
|
@ -5,4 +5,4 @@ extern HWND hFreeLdrPage;
|
||||||
|
|
||||||
INT_PTR CALLBACK FreeLdrPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
INT_PTR CALLBACK FreeLdrPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
#endif
|
#endif /* _FREELDRPAGE_H_ */
|
||||||
|
|
|
@ -5,4 +5,4 @@ extern HWND hGeneralPage;
|
||||||
|
|
||||||
INT_PTR CALLBACK GeneralPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
INT_PTR CALLBACK GeneralPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
#endif
|
#endif /* _GENERALPAGE_H_ */
|
||||||
|
|
|
@ -6,8 +6,16 @@
|
||||||
* COPYRIGHT: Copyright 2005-2006 Christoph von Wittich <Christoph@ApiViewer.de>
|
* COPYRIGHT: Copyright 2005-2006 Christoph von Wittich <Christoph@ApiViewer.de>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
#include "toolspage.h"
|
||||||
|
#include "srvpage.h"
|
||||||
|
#include "startuppage.h"
|
||||||
|
#include "freeldrpage.h"
|
||||||
|
#include "systempage.h"
|
||||||
|
#include "generalpage.h"
|
||||||
|
|
||||||
HINSTANCE hInst = 0;
|
HINSTANCE hInst = 0;
|
||||||
|
|
||||||
HWND hMainWnd; /* Main Window */
|
HWND hMainWnd; /* Main Window */
|
||||||
|
|
|
@ -1,26 +1,19 @@
|
||||||
|
#include <stdarg.h>
|
||||||
|
|
||||||
#define WIN32_NO_STATUS
|
#define WIN32_NO_STATUS
|
||||||
#define _INC_WINDOWS
|
#define _INC_WINDOWS
|
||||||
#define COM_NO_WINDOWS_H
|
#define COM_NO_WINDOWS_H
|
||||||
#define NTOS_MODE_USER
|
#define NTOS_MODE_USER
|
||||||
#include <stdarg.h>
|
|
||||||
#include <windef.h>
|
#include <windef.h>
|
||||||
#include <winbase.h>
|
#include <winbase.h>
|
||||||
#include <winreg.h>
|
#include <winreg.h>
|
||||||
#include <winsvc.h>
|
|
||||||
#include <winver.h>
|
|
||||||
#include <tchar.h>
|
#include <tchar.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <shlwapi.h>
|
|
||||||
#include <shlobj.h>
|
#include <shlobj.h>
|
||||||
|
|
||||||
#include "resource.h"
|
|
||||||
#include "msconfig.h"
|
#include "msconfig.h"
|
||||||
#include "toolspage.h"
|
#include "resource.h"
|
||||||
#include "srvpage.h"
|
|
||||||
#include "startuppage.h"
|
|
||||||
#include "freeldrpage.h"
|
|
||||||
#include "systempage.h"
|
|
||||||
#include "generalpage.h"
|
|
||||||
|
|
||||||
#define MAX_KEY_LENGTH 255
|
#define MAX_KEY_LENGTH 255
|
||||||
#define MAX_VALUE_NAME 16383
|
#define MAX_VALUE_NAME 16383
|
||||||
|
|
|
@ -9,6 +9,9 @@
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
#include <winsvc.h>
|
||||||
|
#include <winver.h>
|
||||||
|
|
||||||
HWND hServicesPage;
|
HWND hServicesPage;
|
||||||
HWND hServicesListCtrl;
|
HWND hServicesListCtrl;
|
||||||
HWND hServicesDialog;
|
HWND hServicesDialog;
|
||||||
|
|
|
@ -6,4 +6,4 @@ extern HWND hServicesListCtrl;
|
||||||
|
|
||||||
INT_PTR CALLBACK ServicesPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
INT_PTR CALLBACK ServicesPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
#endif
|
#endif /* _SVRPAGE_H_ */
|
||||||
|
|
|
@ -6,4 +6,4 @@ extern HWND hStartupListCtrl;
|
||||||
|
|
||||||
INT_PTR CALLBACK StartupPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
INT_PTR CALLBACK StartupPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
#endif
|
#endif /* _STARTUPPAGE_H_ */
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
* COPYRIGHT: Copyright 2005-2006 Christoph von Wittich <Christoph@ApiViewer.de>
|
* COPYRIGHT: Copyright 2005-2006 Christoph von Wittich <Christoph@ApiViewer.de>
|
||||||
* 2011 Gregor Schneider <Gregor.Schneider@reactos.org>
|
* 2011 Gregor Schneider <Gregor.Schneider@reactos.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
HWND hSystemPage;
|
HWND hSystemPage;
|
||||||
|
|
|
@ -5,4 +5,4 @@ extern HWND hSystemPage;
|
||||||
|
|
||||||
INT_PTR CALLBACK SystemPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
INT_PTR CALLBACK SystemPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
#endif
|
#endif /* _SYSTEMPAGE_H_ */
|
||||||
|
|
|
@ -9,6 +9,8 @@
|
||||||
|
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
#include <shlwapi.h>
|
||||||
|
|
||||||
HWND hToolsPage;
|
HWND hToolsPage;
|
||||||
HWND hToolsListCtrl;
|
HWND hToolsListCtrl;
|
||||||
HWND hToolsDialog;
|
HWND hToolsDialog;
|
||||||
|
|
|
@ -6,4 +6,4 @@ extern HWND hToolsListCtrl;
|
||||||
|
|
||||||
INT_PTR CALLBACK ToolsPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
INT_PTR CALLBACK ToolsPageWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
|
||||||
|
|
||||||
#endif
|
#endif /* _TOOLSPAGE_H_ */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue