2005-11-26 20:05:14 +00:00
|
|
|
#ifndef __PRECOMP_H
|
|
|
|
#define __PRECOMP_H
|
2005-10-19 23:45:55 +00:00
|
|
|
|
2007-10-31 23:26:27 +00:00
|
|
|
#ifndef UNICODE
|
|
|
|
#error Task-Manager uses NDK functions, so it can only be compiled with Unicode support enabled!
|
|
|
|
#endif
|
|
|
|
|
2007-11-09 19:46:01 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2005-10-19 17:03:38 +00:00
|
|
|
#define WIN32_NO_STATUS
|
2004-08-15 22:40:34 +00:00
|
|
|
#include <windows.h>
|
2005-06-20 22:15:59 +00:00
|
|
|
#define NTOS_MODE_USER
|
|
|
|
#include <ndk/ntndk.h>
|
2007-11-09 19:46:01 +00:00
|
|
|
#include <aclapi.h>
|
2005-04-07 13:25:34 +00:00
|
|
|
#include <commctrl.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
|
2007-08-03 07:35:39 +00:00
|
|
|
#include "column.h"
|
2004-08-15 22:40:34 +00:00
|
|
|
#include "taskmgr.h"
|
2005-04-07 13:25:34 +00:00
|
|
|
#include "perfdata.h"
|
|
|
|
#include "perfpage.h"
|
|
|
|
#include "about.h"
|
|
|
|
#include "procpage.h"
|
|
|
|
#include "proclist.h"
|
|
|
|
#include "affinity.h"
|
|
|
|
#include "applpage.h"
|
|
|
|
#include "dbgchnl.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "endproc.h"
|
|
|
|
#include "graph.h"
|
|
|
|
#include "graphctl.h"
|
|
|
|
#include "optnmenu.h"
|
|
|
|
#include "priority.h"
|
|
|
|
#include "run.h"
|
|
|
|
#include "trayicon.h"
|
2007-11-09 19:46:01 +00:00
|
|
|
|
2005-11-26 20:05:14 +00:00
|
|
|
#endif /* __PRECOMP_H */
|