From bbe3e0120ac25d167c338375f21b9a3c1cafa56e Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Wed, 19 Oct 2005 00:46:31 +0000 Subject: [PATCH] fixed some compile problems with msvc 2003/2005 svn path=/trunk/; revision=18583 --- reactos/subsys/system/taskmgr/about.c | 2 +- reactos/subsys/system/taskmgr/affinity.c | 2 +- reactos/subsys/system/taskmgr/applpage.c | 2 +- reactos/subsys/system/taskmgr/column.c | 2 +- reactos/subsys/system/taskmgr/dbgchnl.c | 2 +- reactos/subsys/system/taskmgr/debug.c | 2 +- reactos/subsys/system/taskmgr/endproc.c | 2 +- reactos/subsys/system/taskmgr/font.c | 2 +- reactos/subsys/system/taskmgr/graph.c | 2 +- reactos/subsys/system/taskmgr/graphctl.c | 2 +- reactos/subsys/system/taskmgr/optnmenu.c | 2 +- reactos/subsys/system/taskmgr/perfdata.c | 2 +- reactos/subsys/system/taskmgr/perfpage.c | 2 +- reactos/subsys/system/taskmgr/priority.c | 2 +- reactos/subsys/system/taskmgr/proclist.c | 2 +- reactos/subsys/system/taskmgr/procpage.c | 2 +- reactos/subsys/system/taskmgr/run.c | 2 +- reactos/subsys/system/taskmgr/taskmgr.c | 2 +- reactos/subsys/system/taskmgr/trayicon.c | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/reactos/subsys/system/taskmgr/about.c b/reactos/subsys/system/taskmgr/about.c index bd73e5bf405..e91455f2a36 100644 --- a/reactos/subsys/system/taskmgr/about.c +++ b/reactos/subsys/system/taskmgr/about.c @@ -20,7 +20,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" INT_PTR CALLBACK AboutDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam); diff --git a/reactos/subsys/system/taskmgr/affinity.c b/reactos/subsys/system/taskmgr/affinity.c index 26040b5021c..b54e9aa9979 100644 --- a/reactos/subsys/system/taskmgr/affinity.c +++ b/reactos/subsys/system/taskmgr/affinity.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" HANDLE hProcessAffinityHandle; TCHAR szTemp[256]; diff --git a/reactos/subsys/system/taskmgr/applpage.c b/reactos/subsys/system/taskmgr/applpage.c index 1593ffbe603..76a6354ef9c 100644 --- a/reactos/subsys/system/taskmgr/applpage.c +++ b/reactos/subsys/system/taskmgr/applpage.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" typedef struct { diff --git a/reactos/subsys/system/taskmgr/column.c b/reactos/subsys/system/taskmgr/column.c index d98e7ac9994..afea962af1d 100644 --- a/reactos/subsys/system/taskmgr/column.c +++ b/reactos/subsys/system/taskmgr/column.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" UINT ColumnDataHints[25]; TCHAR szTemp[256]; diff --git a/reactos/subsys/system/taskmgr/dbgchnl.c b/reactos/subsys/system/taskmgr/dbgchnl.c index fc96b0ffb83..e8daad3db13 100644 --- a/reactos/subsys/system/taskmgr/dbgchnl.c +++ b/reactos/subsys/system/taskmgr/dbgchnl.c @@ -20,7 +20,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" /* TODO: * - the dialog box could be non modal diff --git a/reactos/subsys/system/taskmgr/debug.c b/reactos/subsys/system/taskmgr/debug.c index 500b8165211..a6b9b4c92d9 100644 --- a/reactos/subsys/system/taskmgr/debug.c +++ b/reactos/subsys/system/taskmgr/debug.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" void ProcessPage_OnDebug(void) { diff --git a/reactos/subsys/system/taskmgr/endproc.c b/reactos/subsys/system/taskmgr/endproc.c index 4093a1d5737..e8181090373 100644 --- a/reactos/subsys/system/taskmgr/endproc.c +++ b/reactos/subsys/system/taskmgr/endproc.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" TCHAR szTemp[256]; TCHAR szTempA[256]; diff --git a/reactos/subsys/system/taskmgr/font.c b/reactos/subsys/system/taskmgr/font.c index 9a98786ae28..59d119627c5 100644 --- a/reactos/subsys/system/taskmgr/font.c +++ b/reactos/subsys/system/taskmgr/font.c @@ -20,7 +20,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" void Font_DrawText(HDC hDC, LPCTSTR lpszText, int x, int y) { diff --git a/reactos/subsys/system/taskmgr/graph.c b/reactos/subsys/system/taskmgr/graph.c index bc1975608d2..043348242db 100644 --- a/reactos/subsys/system/taskmgr/graph.c +++ b/reactos/subsys/system/taskmgr/graph.c @@ -20,7 +20,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" LONG OldGraphWndProc; diff --git a/reactos/subsys/system/taskmgr/graphctl.c b/reactos/subsys/system/taskmgr/graphctl.c index fbe2910a818..ea89b54bcb3 100644 --- a/reactos/subsys/system/taskmgr/graphctl.c +++ b/reactos/subsys/system/taskmgr/graphctl.c @@ -20,7 +20,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include +#include "precomp.h" LONG OldGraphCtrlWndProc; diff --git a/reactos/subsys/system/taskmgr/optnmenu.c b/reactos/subsys/system/taskmgr/optnmenu.c index 74dca58749e..8bc4dd1a666 100644 --- a/reactos/subsys/system/taskmgr/optnmenu.c +++ b/reactos/subsys/system/taskmgr/optnmenu.c @@ -26,7 +26,7 @@ * Menu item handlers for the options menu. */ -#include +#include "precomp.h" void TaskManager_OnOptionsAlwaysOnTop(void) { diff --git a/reactos/subsys/system/taskmgr/perfdata.c b/reactos/subsys/system/taskmgr/perfdata.c index 22aadf68fb0..5217b3f4139 100644 --- a/reactos/subsys/system/taskmgr/perfdata.c +++ b/reactos/subsys/system/taskmgr/perfdata.c @@ -20,7 +20,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" CRITICAL_SECTION PerfDataCriticalSection; PPERFDATA pPerfDataOld = NULL; /* Older perf data (saved to establish delta values) */ diff --git a/reactos/subsys/system/taskmgr/perfpage.c b/reactos/subsys/system/taskmgr/perfpage.c index 8b5c03118a4..20b8b8220e8 100644 --- a/reactos/subsys/system/taskmgr/perfpage.c +++ b/reactos/subsys/system/taskmgr/perfpage.c @@ -20,7 +20,7 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include +#include "precomp.h" TGraphCtrl PerformancePageCpuUsageHistoryGraph; TGraphCtrl PerformancePageMemUsageHistoryGraph; diff --git a/reactos/subsys/system/taskmgr/priority.c b/reactos/subsys/system/taskmgr/priority.c index 46971460626..4d5fc85f366 100644 --- a/reactos/subsys/system/taskmgr/priority.c +++ b/reactos/subsys/system/taskmgr/priority.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" TCHAR szTemp[256]; TCHAR szTempA[256]; diff --git a/reactos/subsys/system/taskmgr/proclist.c b/reactos/subsys/system/taskmgr/proclist.c index 21a633ad7c3..2614880dc51 100644 --- a/reactos/subsys/system/taskmgr/proclist.c +++ b/reactos/subsys/system/taskmgr/proclist.c @@ -20,7 +20,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" INT_PTR CALLBACK ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam); diff --git a/reactos/subsys/system/taskmgr/procpage.c b/reactos/subsys/system/taskmgr/procpage.c index 03c9b22464f..9b3989b7520 100644 --- a/reactos/subsys/system/taskmgr/procpage.c +++ b/reactos/subsys/system/taskmgr/procpage.c @@ -20,7 +20,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" HWND hProcessPage; /* Process List Property Page */ diff --git a/reactos/subsys/system/taskmgr/run.c b/reactos/subsys/system/taskmgr/run.c index f44bcef993d..92f39890775 100644 --- a/reactos/subsys/system/taskmgr/run.c +++ b/reactos/subsys/system/taskmgr/run.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" void TaskManager_OnFileNew(void) { diff --git a/reactos/subsys/system/taskmgr/taskmgr.c b/reactos/subsys/system/taskmgr/taskmgr.c index 2bb23ed4101..66ae882caf2 100644 --- a/reactos/subsys/system/taskmgr/taskmgr.c +++ b/reactos/subsys/system/taskmgr/taskmgr.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" #define STATUS_WINDOW 2001 diff --git a/reactos/subsys/system/taskmgr/trayicon.c b/reactos/subsys/system/taskmgr/trayicon.c index ccf8cad4cb3..f0c4fdc6dbb 100644 --- a/reactos/subsys/system/taskmgr/trayicon.c +++ b/reactos/subsys/system/taskmgr/trayicon.c @@ -21,7 +21,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include +#include "precomp.h" HICON TrayIcon_GetProcessorUsageIcon(void) {