mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
9906261e23
Fix some warnings. Rename panic_ask to log_technical_bug.
44 lines
963 B
C
Executable File
44 lines
963 B
C
Executable File
#ifndef __XTOOLSCOMMON_H__
|
|
#define __XTOOLSCOMMON_H__
|
|
|
|
#include <posix/posix.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <Base.h>
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#define xsize size_t
|
|
//#define xisize INTN
|
|
#define MAX_XSIZE SIZE_T_MAX
|
|
//#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) reallocWithOldSize(ptr, newsize, oldsize)
|
|
|
|
#define XTOOLS_VA_LIST VA_LIST
|
|
#define XTOOLS_VA_START VA_START
|
|
#define XTOOLS_VA_END VA_END
|
|
#define XTOOLS_VA_ARG VA_ARG
|
|
|
|
#if defined(_MSC_VER) && !defined(__PRETTY_FUNCTION__)
|
|
#define __PRETTY_FUNCTION__ __FUNCSIG__
|
|
#endif
|
|
|
|
#endif
|