CloverBootloader/rEFIt_UEFI/PlatformEFI/include/Platform.h

51 lines
1.1 KiB
C
Raw Normal View History

/*
Headers collection for procedures
*/
#ifndef __REFIT_PLATFORM_H__
#define __REFIT_PLATFORM_H__
// Set all debug options - apianti
// Uncomment to set all debug options
// Comment to use source debug options
//#define DEBUG_ALL 2
#include "posix/posix.h"
#include <Efi.h>
#ifdef __cplusplus
#include <Library/printf_lite.h>
#include "../cpp_foundation/XBool.h"
2020-03-29 15:44:08 +02:00
#include "../cpp_foundation/XString.h"
#include "../cpp_foundation/XArray.h"
#include "../cpp_foundation/XObjArray.h"
#include "../include/remove_ref.h"
2021-03-19 16:35:01 +01:00
#include "../cpp_lib/undefinable.h"
#endif
2020-04-16 11:09:22 +02:00
#include "../include/OneLinerMacros.h"
//#include "../Settings/Self.h"
#include "../entry_scan/common.h"
2020-04-11 08:21:06 +02:00
#include "../libeg/BmLib.h"
#include "../Platform/BootLog.h"
#include "../Platform/BasicIO.h"
#include "../Platform/VersionString.h"
#include "../Platform/Utils.h"
2020-08-17 21:40:52 +02:00
//#include "Settings.h"
2020-04-16 11:09:22 +02:00
#ifndef CLOVERAPPLICATION
2020-08-09 17:55:30 +02:00
#include "../Platform/Utils.h"
#endif
2020-03-29 15:44:08 +02:00
#if defined(_MSC_VER) && !defined(__PRETTY_FUNCTION__)
#define __PRETTY_FUNCTION__ __FUNCSIG__
#endif
2020-08-09 17:55:30 +02:00
// Jief : temporary rename
2022-04-26 00:55:56 +02:00
//#define AllocateZeroPool AllocateZeroPool
2020-08-09 17:55:30 +02:00
#endif