1 /* 2 * PROJECT: ReactOS Task Manager 3 * LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later) 4 * PURPOSE: Precompiled Header. 5 * COPYRIGHT: Copyright 1999-2001 Brian Palmer <brianp@reactos.org> 6 */ 7 8 #ifndef __PRECOMP_H 9 #define __PRECOMP_H 10 11 #ifndef UNICODE 12 #error Task-Manager uses NDK functions, so it can only be compiled with Unicode support enabled! 13 #endif 14 15 #include <stdio.h> 16 #include <stdlib.h> 17 #include <stdarg.h> 18 19 #define WIN32_NO_STATUS 20 21 #include <windef.h> 22 #include <winbase.h> 23 #include <wingdi.h> 24 #include <winnls.h> 25 #include <winuser.h> 26 #include <winreg.h> 27 #include <commctrl.h> 28 #include <shellapi.h> 29 #include <tlhelp32.h> 30 31 #include <strsafe.h> 32 33 #include "column.h" 34 #include "taskmgr.h" 35 #include "perfdata.h" 36 #include "procpage.h" 37 #include "applpage.h" 38 #include "endproc.h" 39 #include "graph.h" 40 #include "graphctl.h" 41 #include "optnmenu.h" 42 #include "run.h" 43 #include "trayicon.h" 44 #include "shutdown.h" 45 46 #endif /* __PRECOMP_H */ 47