1 /* 2 * PROJECT: ReactOS Setup Library 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: Public header 5 * COPYRIGHT: Copyright 2017-2018 Hermes Belusca-Maito 6 */ 7 8 #pragma once 9 10 /* Needed PSDK headers when using this library */ 11 #if 0 12 13 #define WIN32_NO_STATUS 14 #define _INC_WINDOWS 15 #define COM_NO_WINDOWS_H 16 17 #include <winxxx.h> 18 19 #endif 20 21 /* NOTE: Please keep the header inclusion order! */ 22 23 extern HANDLE ProcessHeap; 24 25 #include "errorcode.h" 26 #include "linklist.h" 27 #include "ntverrsrc.h" 28 // #include "arcname.h" 29 #include "bldrsup.h" 30 #include "filesup.h" 31 #include "fsutil.h" 32 #include "genlist.h" 33 #include "inicache.h" 34 #include "partlist.h" 35 #include "arcname.h" 36 #include "osdetect.h" 37 38 /* EOF */ 39