Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

UnityAdsUtilities.h 599B

1234567891011121314151617181920212223
  1. const char * UnityAdsCopyString(const char * string);
  2. /**
  3. * Returns the size of an Il2CppString
  4. */
  5. size_t Il2CppStringLen(const ushort* str);
  6. /**
  7. * Converts an ushort string to an NSString
  8. */
  9. NSString* NSStringFromIl2CppString(const ushort* str);
  10. /**
  11. * Converts a char string to an NSString. Does pre checks for null pointer
  12. */
  13. NSString* NSStringFromCString(const char* string);
  14. /**
  15. * Converts a NSString to a char string.Does pre checks for null pointer
  16. */
  17. const char * CStringFromNSString(const NSString * string);
  18. #define NSSTRING_OR_EMPTY(string) NSStringFromCString(string) ?: @""