mirror of
https://github.com/reactos/reactos.git
synced 2025-07-29 17:41:59 +00:00

- Whilst this is non-standard and potentially makes the code less portable, it's supported by both gcc and msvc and should bringg increased compilation speed due to its optimized behaviour (doesn't need to invoke the preprocessor) - Patch by Amine Khaldi [amine.khaldi@reactos.org] svn path=/trunk/; revision=45685
37 lines
745 B
C
37 lines
745 B
C
#pragma once
|
|
|
|
#ifndef UNICODE
|
|
#error Task-Manager uses NDK functions, so it can only be compiled with Unicode support enabled!
|
|
#endif
|
|
|
|
#include <ctype.h>
|
|
#include <math.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#include <windows.h>
|
|
#define NTOS_MODE_USER
|
|
#include <ndk/ntndk.h>
|
|
#include <aclapi.h>
|
|
#include <commctrl.h>
|
|
#include <shellapi.h>
|
|
|
|
#include "column.h"
|
|
#include "taskmgr.h"
|
|
#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"
|