fixed some compile problems with msvc 2003/2005
authorChristoph von Wittich <christoph_vw@reactos.org>
Wed, 19 Oct 2005 00:46:31 +0000 (00:46 +0000)
committerChristoph von Wittich <christoph_vw@reactos.org>
Wed, 19 Oct 2005 00:46:31 +0000 (00:46 +0000)
svn path=/trunk/; revision=18583

19 files changed:
reactos/subsys/system/taskmgr/about.c
reactos/subsys/system/taskmgr/affinity.c
reactos/subsys/system/taskmgr/applpage.c
reactos/subsys/system/taskmgr/column.c
reactos/subsys/system/taskmgr/dbgchnl.c
reactos/subsys/system/taskmgr/debug.c
reactos/subsys/system/taskmgr/endproc.c
reactos/subsys/system/taskmgr/font.c
reactos/subsys/system/taskmgr/graph.c
reactos/subsys/system/taskmgr/graphctl.c
reactos/subsys/system/taskmgr/optnmenu.c
reactos/subsys/system/taskmgr/perfdata.c
reactos/subsys/system/taskmgr/perfpage.c
reactos/subsys/system/taskmgr/priority.c
reactos/subsys/system/taskmgr/proclist.c
reactos/subsys/system/taskmgr/procpage.c
reactos/subsys/system/taskmgr/run.c
reactos/subsys/system/taskmgr/taskmgr.c
reactos/subsys/system/taskmgr/trayicon.c

index bd73e5b..e91455f 100644 (file)
@@ -20,7 +20,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 INT_PTR CALLBACK AboutDialogWndProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
 
index 26040b5..b54e9aa 100644 (file)
@@ -21,7 +21,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 HANDLE        hProcessAffinityHandle;
 TCHAR         szTemp[256];
index 1593ffb..76a6354 100644 (file)
@@ -21,7 +21,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 typedef struct
 {
index d98e7ac..afea962 100644 (file)
@@ -21,7 +21,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 UINT    ColumnDataHints[25];
 TCHAR       szTemp[256];
index fc96b0f..e8daad3 100644 (file)
@@ -20,7 +20,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 /* TODO:
  *      - the dialog box could be non modal
index 500b816..a6b9b4c 100644 (file)
@@ -21,7 +21,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 void ProcessPage_OnDebug(void)
 {
index 4093a1d..e818109 100644 (file)
@@ -21,7 +21,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 TCHAR                szTemp[256];
 TCHAR                szTempA[256];
index 9a98786..59d1196 100644 (file)
@@ -20,7 +20,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 void Font_DrawText(HDC hDC, LPCTSTR lpszText, int x, int y)
 {
index bc19756..0433482 100644 (file)
@@ -20,7 +20,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 LONG                OldGraphWndProc;
 
index fbe2910..ea89b54 100644 (file)
@@ -20,7 +20,7 @@
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 LONG OldGraphCtrlWndProc;
 
index 74dca58..8bc4dd1 100644 (file)
@@ -26,7 +26,7 @@
  * Menu item handlers for the options menu.
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 void TaskManager_OnOptionsAlwaysOnTop(void)
 {
index 22aadf6..5217b3f 100644 (file)
@@ -20,7 +20,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 CRITICAL_SECTION                 PerfDataCriticalSection;
 PPERFDATA                        pPerfDataOld = NULL;    /* Older perf data (saved to establish delta values) */
index 8b5c031..20b8b82 100644 (file)
@@ -20,7 +20,7 @@
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 TGraphCtrl PerformancePageCpuUsageHistoryGraph;
 TGraphCtrl PerformancePageMemUsageHistoryGraph;
index 4697146..4d5fc85 100644 (file)
@@ -21,7 +21,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 TCHAR                szTemp[256];
 TCHAR                szTempA[256];
index 21a633a..2614880 100644 (file)
@@ -20,7 +20,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 
 INT_PTR CALLBACK    ProcessListWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
index 03c9b22..9b3989b 100644 (file)
@@ -20,7 +20,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 HWND hProcessPage;                        /* Process List Property Page */
 
index f44bcef..92f3989 100644 (file)
@@ -21,7 +21,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 void TaskManager_OnFileNew(void)
 {
index 2bb23ed..66ae882 100644 (file)
@@ -21,7 +21,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 #define STATUS_WINDOW   2001
 
index ccf8cad..f0c4fdc 100644 (file)
@@ -21,7 +21,7 @@
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-#include <precomp.h>
+#include "precomp.h"
 
 HICON TrayIcon_GetProcessorUsageIcon(void)
 {