Error-c-api.h 314 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include <stdint.h>
  3. #if defined(__cplusplus)
  4. #include "os/Error.h"
  5. typedef il2cpp::os::ErrorCode UnityPalErrorCode;
  6. #else
  7. typedef int32_t UnityPalErrorCode;
  8. #endif
  9. #if defined(__cplusplus)
  10. extern "C"
  11. {
  12. #endif
  13. int32_t UnityPalSuccess(UnityPalErrorCode code);
  14. #if defined(__cplusplus)
  15. }
  16. #endif