| 15 | static Coral::Type g_TestsType; |
| 16 | |
| 17 | static void ExceptionCallback(std::string_view InMessage) |
| 18 | { |
| 19 | std::cout << "\033[1;31m " << "Unhandled native exception: " << InMessage << "\033[0m\n"; |
| 20 | } |
| 21 | |
| 22 | static int8_t SByteMarshalIcall(int8_t InValue) { return InValue * 2; } |
| 23 | static uint8_t ByteMarshalIcall(uint8_t InValue) { return InValue * 2; } |
no outgoing calls
no test coverage detected