Firstborn/Library/PackageCache/com.unity.ads@4.4.2/Plugins/iOS/UnityAdsUtilities.h
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

24 lines
599 B
C

const char * UnityAdsCopyString(const char * string);
/**
* Returns the size of an Il2CppString
*/
size_t Il2CppStringLen(const ushort* str);
/**
* Converts an ushort string to an NSString
*/
NSString* NSStringFromIl2CppString(const ushort* str);
/**
* Converts a char string to an NSString. Does pre checks for null pointer
*/
NSString* NSStringFromCString(const char* string);
/**
* Converts a NSString to a char string.Does pre checks for null pointer
*/
const char * CStringFromNSString(const NSString * string);
#define NSSTRING_OR_EMPTY(string) NSStringFromCString(string) ?: @""