| 394 | #endif |
| 395 | |
| 396 | MObject* MCore::Object::Box(void* value, const MClass* klass) |
| 397 | { |
| 398 | static void* BoxValuePtr = GetStaticMethodPointer(TEXT("BoxValue")); |
| 399 | return (MObject*)CallStaticMethod<void*, void*, void*>(BoxValuePtr, klass->_handle, value); |
| 400 | } |
| 401 | |
| 402 | void* MCore::Object::Unbox(MObject* obj) |
| 403 | { |
nothing calls this directly
no test coverage detected