2010-02-27 19:51:54 +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
|
|
|
|
|
2014-11-09 11:48:18 +00:00
|
|
|
#include <stdio.h>
|
2007-11-09 19:46:01 +00:00
|
|
|
#include <stdlib.h>
|
2014-01-13 12:43:06 +00:00
|
|
|
#include <stdarg.h>
|
2007-11-09 19:46:01 +00:00
|
|
|
|
2005-10-19 17:03:38 +00:00
|
|
|
#define WIN32_NO_STATUS
|
2013-01-24 23:00:42 +00:00
|
|
|
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
2014-01-13 12:43:06 +00:00
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <winreg.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 "procpage.h"
|
|
|
|
#include "applpage.h"
|
|
|
|
#include "dbgchnl.h"
|
|
|
|
#include "endproc.h"
|
|
|
|
#include "graph.h"
|
|
|
|
#include "graphctl.h"
|
|
|
|
#include "optnmenu.h"
|
|
|
|
#include "run.h"
|
|
|
|
#include "trayicon.h"
|
2014-08-26 18:57:20 +00:00
|
|
|
#include "shutdown.h"
|
2010-02-27 19:51:54 +00:00
|
|
|
|
|
|
|
#endif /* __PRECOMP_H */
|