CloverBootloader/rEFIt_UEFI/PlatformPOSIX+EFI/include/Platform.h

154 lines
4.0 KiB
C

//
// Platform.h.h
// cpp_tests
//
// Created by jief on 23.02.20.
// Copyright © 2020 Jief_Machak. All rights reserved.
//
#ifndef Platform_h_h
#define Platform_h_h
// Replacing uintptr_t with unsigned long long doesn't work anymore with stdlic++ with xcode 12.5 (or probably some before)
// seems to work again in xcode 14. (don't know for 13)
#ifndef _UINTPTR_T
#define _UINTPTR_T // to prevent macOS/Clang definition of uintptr_t (map to a long). We prefer long long so we can use %llu on all platform (including microsoft)
#endif
#ifndef _PTRDIFF_T_DECLARED
#define _PTRDIFF_T_DECLARED // to prevent macOS/GCC definition of uintptr_t (map to a long). We prefer long long so we can use %llu on all platform (including microsoft)
#endif
#ifdef _MSC_VER
#include <Windows.h>
#endif
//#pragma clang diagnostic ignored "-Wc99-extensions"
// Replacement of uintptr_t to avoid warning in printf. It needs macro _UINTPTR_T to avoid to standard definition
typedef unsigned long long uintptr_t;
// Replacement of printf format
#include <inttypes.h>
#undef PRIdPTR
#undef PRIiPTR
#undef PRIoPTR
#undef PRIuPTR
#undef PRIxPTR
#undef PRIXPTR
# define PRIdPTR "lld"
# define PRIiPTR "lli"
# define PRIoPTR "llo"
# define PRIuPTR "llu"
# define PRIxPTR "llx"
# define PRIXPTR "llX"
//#ifdef __cplusplus
//#include "../../cpp_foundation/XBool.h"
//#endif
#include "posix/posix.h"
#ifdef __cplusplus
extern "C" {
#endif
#define malloc(size) my_malloc(size)
#define free(size) my_free(size)
void* my_malloc(size_t size);
void my_free(void* p);
//#include <Uefi.h>
//#include <Base.h>
//#include <Library/BaseLib.h>
//#include <Library/BaseMemoryLib.h>
//#include <Library/MemoryAllocationLib.h>
////#include "BootLog.h"
//#include <Library/DebugLib.h> // this is just to define DEBUG, because Slice wrongly did some #ifdef DEBUG
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
#include "../cpp_util/operatorNewDelete.h"
#endif
#include <Efi.h>
#include "posix/posix_additions.h"
//#include <stdio.h>
//#include <limits.h>
//#include <stdarg.h>
//#include <stdint.h>
//#include <stdbool.h>
//#include <string.h>
//#include <inttypes.h>
//#include <wchar.h>
//#include "posix/posix.h"
//
//#include "../../../../rEFIt_UEFI/Platform/BootLog.h"
#include "../../../../rEFIt_UEFI/include/OneLinerMacros.h"
//#ifndef __cplusplus
////typedef uint16_t wchar_t;
//typedef uint32_t char32_t;
//typedef uint16_t char16_t;
//typedef uint8_t bool;
//#endif
#include "./posix/abort.h"
#include "../../../rEFIt_UEFI/cpp_foundation/unicode_conversions.h"
#ifdef __cplusplus
#include "../../../rEFIt_UEFI/cpp_foundation/apd.h"
#include "../../../rEFIt_UEFI/cpp_foundation/XString.h"
#include "../../../rEFIt_UEFI/cpp_foundation/XArray.h"
#include "../../../rEFIt_UEFI/cpp_foundation/XObjArray.h"
#include "../include/remove_ref.h"
#include "../cpp_lib/undefinable.h"
#include "../include/OneLinerMacros.h"
#include "../../../rEFIt_UEFI/entry_scan/common.h"
#include "../../../rEFIt_UEFI/libeg/BmLib.h"
#include "../Platform/BootLog.h"
#include "../Platform/BasicIO.h"
#include "../Platform/VersionString.h"
#include "../Platform/Utils.h"
#include "../../../rEFIt_UEFI/Platform/Utils.h"
#include "../../../rEFIt_UEFI/Platform/UtilsEFI.h"
#include "../cpp_util/operatorNewDelete.h"
#endif
#if defined(__clang__) // it works to include <Foundation/Foundation.h> and that allows to use NS... objects. Could be useful for a tool running on macOS.
//#ifdef __OBJC__
//#define _MACH_H_
//#define __DEBUGGING__
//#import <Foundation/Foundation.h>
//#undef CMASK
//#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
// to be able to compile AutoGen.c, because AutoGen.c doesn't include AutoGen.h.
#include "../../Build/Clover/DEBUGMACOS_XCODE8/X64/rEFIt_UEFI/refit/DEBUG/AutoGen.h"
// to be able to compile ProcessModuleEntryPointList() in AutoGen.c.
EFI_STATUS EFIAPI RefitMain(IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable);
#ifdef __cplusplus
}
#endif
//static_assert(sizeof(void*)==8, "sizeof(void*)==8");
#endif /* Platform_h_h */