mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-10 14:23:31 +01:00
33 lines
790 B
C
Executable File
33 lines
790 B
C
Executable File
#ifndef __XTOOLSCONF_H__
|
|
#define __XTOOLSCONF_H__
|
|
|
|
|
|
#define xsize size_t
|
|
//#define xisize INTN
|
|
#ifdef _MSC_VER
|
|
#define MAX_XSIZE SIZE_MAX
|
|
#else
|
|
#define MAX_XSIZE SIZE_T_MAX
|
|
#endif
|
|
//#define MAX_XISIZE MAX_INTN
|
|
|
|
#define XStringGrowByDefault 10
|
|
#define XArrayGrowByDefault 8
|
|
#define XBufferGrowByDefault 16
|
|
|
|
/* For convience, operator [] is define with int parameter.
|
|
* Defining __XTOOLS_CHECK_OVERFLOW__ make a check that the parameter is >= 0
|
|
* TODO : make new XString using __XTOOLS_CHECK_OVERFLOW__
|
|
*/
|
|
#define __XTOOLS_CHECK_OVERFLOW__
|
|
|
|
#define Xrealloc(ptr, newsize, oldsize) realloc(ptr, newsize)
|
|
|
|
//#include <Platform.h>
|
|
#include <posix.h>
|
|
#include <inttypes.h>
|
|
#include "../../../rEFIt_UEFI/Platform/Posix/abort.h"
|
|
#include <Library/Base.h>
|
|
|
|
#endif
|