我正试图在Ubuntu 10.10上从IronPython 2.6中调出一个C函数。我使用了IP发行版中的一个例子作为我的模型。但是,C代码抛出“StandardError:调用目标已抛出异常。”
我尝试过几种方法,但都没有。这是我的代码:
pinvoke_test.h
extern void pinvoke_this(const char*);
pinvoke_test.c
#include <stdio.h>
#include "pinvoke_test.h"
void pinvoke_this(const char *b)
{
FILE *file;
file = fopen("file.txt","w+");
fprintf(file,"%s", b);
fclose(file);
}
pinvoke_test.py
import clr
import clrtype
import System
class NativeMethods(object):
__metaclass__ = clrtype.ClrClass
from System.Runtime.InteropServices import DllImportAttribute, PreserveSigAttribute
DllImport = clrtype.attribute(DllImportAttribute)
PreserveSig = clrtype.attribute(PreserveSigAttribute)
@staticmethod
@DllImport("pinvoke_test.o")
@PreserveSig()
@clrtype.accepts(System.Char)
@clrtype.returns(System.Void)
def pinvoke_this(c): raise RuntimeError("this should not get called")
def call_pinvoke_method():
args = System.Array[object](("sample".Chars[0],))
pinvoke_this = clr.GetClrType(NativeMethods).GetMethod('pinvoke_this')
pinvoke_this.Invoke(None, args)
call_pinvoke_method()
目标文件由“gcc -c pinvoke_test.c -o pinvoke_test.o”编译。我希望有人能指出我正确的方向。
答案 0 :(得分:2)
它可能不是您问题的原因,但pinvoke签名显示错误。你的C函数需要一个char *,而不是char。