mirror of
https://github.com/reactos/reactos.git
synced 2024-11-23 19:43:31 +08:00
b7071f67a8
taskmgr doesn't use any CRT allocation. I don't see the point of using it.
This reverts commit 2441e86
.
CORE-18991
47 lines
967 B
C
47 lines
967 B
C
/*
|
|
* PROJECT: ReactOS Task Manager
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Precompiled Header.
|
|
* COPYRIGHT: Copyright 1999-2001 Brian Palmer <brianp@reactos.org>
|
|
*/
|
|
|
|
#ifndef __PRECOMP_H
|
|
#define __PRECOMP_H
|
|
|
|
#ifndef UNICODE
|
|
#error Task-Manager uses NDK functions, so it can only be compiled with Unicode support enabled!
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <wingdi.h>
|
|
#include <winnls.h>
|
|
#include <winuser.h>
|
|
#include <winreg.h>
|
|
#include <commctrl.h>
|
|
#include <shellapi.h>
|
|
#include <tlhelp32.h>
|
|
|
|
#include <strsafe.h>
|
|
|
|
#include "column.h"
|
|
#include "taskmgr.h"
|
|
#include "perfdata.h"
|
|
#include "procpage.h"
|
|
#include "applpage.h"
|
|
#include "endproc.h"
|
|
#include "graph.h"
|
|
#include "graphctl.h"
|
|
#include "optnmenu.h"
|
|
#include "run.h"
|
|
#include "trayicon.h"
|
|
#include "shutdown.h"
|
|
|
|
#endif /* __PRECOMP_H */
|