我有以下代码:
namespace WPFMuskTest
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
[DllImport
("myDll.DLL",
EntryPoint = "?Func1@FUllNameCopiedFromDependancyWalker",
CharSet = CharSet.Unicode, CallingConvention = CallingConvention.Cdecl
)
]
public static extern System.IntPtr Func1(out System.IntPtr handle, int type, out DateTime date);
public MainWindow()
{
InitializeComponent();
//
//
//
}
private void button1_Click(object sender, RoutedEventArgs e)
{
System.IntPtr MainParam;
int thetype = 1
DateTime date;
System.IntPtr res = GetFxIRMoveForDate(out MainParam, thetype _til, out date);
}
}
}
exe与被调用的DLL在同一路径中,函数肯定存在于DLL中(在DependacyWalker中验证)但我一直收到错误:
调用的函数原型是:
class __declspec(dllexport)OUR_DATE_TYPE { .... }
typedef unsigned long TYPE; typedef DATE_TYPE OUR_DATE_TYPE;
namespace1
{
namespace2
{
void func1(MyClass &myclass, const TYPE& type, const DATE_TYPE& date);
}
}
“System.AccessViolationException”类型的未处理异常
谁能告诉我为什么?
答案 0 :(得分:0)
默认情况下,c ++不使用cdecl
调用约定,它使用stdcall
。您可能会更成功地将c包装器写入c ++ api并调用它,因为C具有明确定义的ABI。
编辑:再次查看您的代码,我怀疑DateTime
与您在C ++中使用的日期类型相同。例如,如果尺寸错误,可能会发生此错误。