4
C#代碼側內部呼叫如何實現統一等與單
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_set_rotation(ref Quaternion value);
如何暴露從C++此方法爲單聲道
感謝。
C#代碼側內部呼叫如何實現統一等與單
[WrapperlessIcall]
[MethodImpl(MethodImplOptions.InternalCall)]
private extern void INTERNAL_set_rotation(ref Quaternion value);
如何暴露從C++此方法爲單聲道
感謝。
你需要調用mono_add_internal_call
:
mono_add_internal_call ("YourClass::INTERNAL_set_rotation", yourclass_INTERNAL_set_rotation);
有一些文件在這裏:http://www.mono-project.com/Embedding_Mono#Exposing_C_code_to_the_CIL_universe
這裏是一個代碼示例:https://github.com/mono/moon/blob/8d8ece884382d653d215b0da5bf633079566d816/src/deployment.cpp#L579