我正在使用第三方专有 DLL,我无法获得其源代码。但是,我可以使用似乎是使用 SWIG 1.3.39 自动生成的包装器代码。包装器代码包含一个 C++ 文件(使用一些描述 DLL 的头文件)编译为 DLL 和一个 C# 项目,该项目对 C++ 包装器 DLL 进行 PInvoke 调用。
检查 StackTrace 后,我得到以下信息:
at org.doubango.tinyWRAP.tinyWRAPPINVOKE.MediaSessionMgr_consumerSetInt64(HandleRef jarg1, Int32 jarg2, String jarg3, Int64 jarg4)
at Deskcon_ABL.NotificationHandler.sipService_onInviteEvent(Object sender, InviteEventArgs e)
at BogheCore.Events.EventHandlerTrigger.TriggerEvent[T](EventHandler`1 handler, Object source, T args)
at BogheCore.Services.Impl.SipService.MySipCallback.OnDialogEvent(DialogEvent e)
at org.doubango.tinyWRAP.SipCallback.SwigDirectorOnDialogEvent(IntPtr e)
所以这是有问题的 C# 代码:
//in the C# Wrapper
public bool consumerSetInt64(twrap_media_type_t media, string key, long value) {
bool ret = tinyWRAPPINVOKE.MediaSessionMgr_consumerSetInt64(swigCPtr, (int)media, key, value);
return ret;
}
//In tinyWRAPPINVOKE Class in another file in the C# wrapper:
[DllImport("tinyWRAP", EntryPoint="CSharp_MediaSessionMgr_consumerSetInt64")]
public static extern bool MediaSessionMgr_consumerSetInt64(HandleRef jarg1, int jarg2, string jarg3, long jarg4);
以及来自 C++ 包装器的 C++ 代码:
SWIGEXPORT unsigned int SWIGSTDCALL CSharp_MediaSessionMgr_consumerSetInt64(void * jarg1, int jarg2, char * jarg3, long long jarg4) {
unsigned int jresult ;
MediaSessionMgr *arg1 = (MediaSessionMgr *) 0 ;
twrap_media_type_t arg2 ;
char *arg3 = (char *) 0 ;
int64_t arg4 ;
bool result;
arg1 = (MediaSessionMgr *)jarg1;
arg2 = (twrap_media_type_t)jarg2;
arg3 = (char *)jarg3;
arg4 = (int64_t)jarg4;
result = (bool)(arg1)->consumerSetInt64(arg2,(char const *)arg3,arg4);
jresult = result;
return jresult;
}