mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-12-24 16:27:42 +01:00
Avoid redefining in XString. refit.inf updated.
This commit is contained in:
parent
4cad90281f
commit
3ded70c215
@ -17,9 +17,15 @@
|
|||||||
|
|
||||||
#include "printf_lite.h"
|
#include "printf_lite.h"
|
||||||
|
|
||||||
|
#ifndef memcpy
|
||||||
#define memcpy(dest,source,count) CopyMem(dest,(void*)(source),(UINTN)(count))
|
#define memcpy(dest,source,count) CopyMem(dest,(void*)(source),(UINTN)(count))
|
||||||
|
#endif
|
||||||
|
#ifndef strlen
|
||||||
#define strlen(str) (xsize)(AsciiStrLen(str))
|
#define strlen(str) (xsize)(AsciiStrLen(str))
|
||||||
|
#endif
|
||||||
|
#ifndef memmove
|
||||||
#define memmove(dest,source,count) CopyMem(dest,source,(UINTN)(count))
|
#define memmove(dest,source,count) CopyMem(dest,source,(UINTN)(count))
|
||||||
|
#endif
|
||||||
|
|
||||||
xsize XStringGrowByDefault = 1024;
|
xsize XStringGrowByDefault = 1024;
|
||||||
const XString NullXString;
|
const XString NullXString;
|
||||||
|
@ -190,6 +190,8 @@
|
|||||||
cpp_foundation/utf8Conversion.h
|
cpp_foundation/utf8Conversion.h
|
||||||
cpp_foundation/XArray.h
|
cpp_foundation/XArray.h
|
||||||
cpp_foundation/XObjArray.h
|
cpp_foundation/XObjArray.h
|
||||||
|
cpp_foundation/XString.cpp
|
||||||
|
cpp_foundation/XString.h
|
||||||
cpp_foundation/XStringW.cpp
|
cpp_foundation/XStringW.cpp
|
||||||
cpp_foundation/XStringW.h
|
cpp_foundation/XStringW.h
|
||||||
cpp_foundation/XStringWP.cpp
|
cpp_foundation/XStringWP.cpp
|
||||||
@ -208,6 +210,8 @@
|
|||||||
cpp_unit_test/XArray_tests.h
|
cpp_unit_test/XArray_tests.h
|
||||||
cpp_unit_test/XObjArray_tests.cpp
|
cpp_unit_test/XObjArray_tests.cpp
|
||||||
cpp_unit_test/XObjArray_tests.h
|
cpp_unit_test/XObjArray_tests.h
|
||||||
|
cpp_unit_test/XString_test.cpp
|
||||||
|
cpp_unit_test/XString_test.h
|
||||||
cpp_unit_test/XStringW_test.cpp
|
cpp_unit_test/XStringW_test.cpp
|
||||||
cpp_unit_test/XStringW_test.h
|
cpp_unit_test/XStringW_test.h
|
||||||
cpp_unit_test/XStringWArray_test.cpp
|
cpp_unit_test/XStringWArray_test.cpp
|
||||||
|
Loading…
Reference in New Issue
Block a user