mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-14 10:05:43 +01:00
59 lines
1.4 KiB
C
Executable File
59 lines
1.4 KiB
C
Executable File
#ifndef __XTOOLSCOMMON_H__
|
|
#define __XTOOLSCOMMON_H__
|
|
|
|
#include <posix.h>
|
|
|
|
|
|
#define xsize UINTN
|
|
#define xisize INTN
|
|
#define MAX_XSIZE MAX_UINTN
|
|
#define MAX_XISIZE MAX_INTN
|
|
|
|
extern xsize XArrayGrowByDefault;
|
|
extern xsize XBufferGrowByDefault;
|
|
|
|
/* For convience, operator [] is define with int parameter.
|
|
* Defining __XTOOLS_INT_CHECK__ make a check that the parameter is >= 0
|
|
*/
|
|
#define __XTOOLS_INT_CHECK__
|
|
|
|
#include "../cpp_util/panic.h"
|
|
|
|
#ifdef CLOVER_BUILD
|
|
|
|
|
|
extern "C" {
|
|
#include <ProcessorBind.h>
|
|
#include <Library/BaseLib.h> // for StrCmp
|
|
#include <Library/MemoryAllocationLib.h>
|
|
#include <Library/BaseMemoryLib.h> // for CopyMen
|
|
}
|
|
|
|
#endif
|
|
|
|
//#define Xalloc(AllocationSize) AllocatePool(AllocationSize)
|
|
//#define Xrealloc(OldSize, NewSize, OldBuffer) ReallocatePool(OldSize, NewSize, OldBuffer)
|
|
//#define Xfree(Buffer) FreePool(Buffer)
|
|
//#define Xmemmove(dest,source,count) CopyMem(dest, (void*)(source), count) // that has to handle overlapping memory (prefer memmove to memcpy).
|
|
|
|
#if !defined(CLOVER_BUILD)
|
|
#define realloc(ptr, newsize, oldsize) realloc(ptr, newsize)
|
|
#endif
|
|
|
|
|
|
// Declare here instead of include to avoid circular dependency.
|
|
|
|
#ifdef _MSC_VER
|
|
#define __attribute__(x)
|
|
#endif
|
|
|
|
VOID
|
|
EFIAPI
|
|
DebugLog (
|
|
IN INTN DebugMode,
|
|
IN CONST CHAR8 *FormatString, ...) __attribute__((format(printf, 2, 3)));;
|
|
|
|
|
|
|
|
#endif
|