boost.python 关于带指针参数的C函数的导出
如果利用boost.python 导出带有指针参数的C函数,提供给python脚本调用。
如:
int func(int * pi)
{
*pi = 3;
cout < < "new pi:" < < *pi < < endl;
return 0;
}
将以上函数利用boost.python导出。
如果做不到,那能否导出引用参数的函数呢?
如:
int func(int & pi)
{
pi = 3;
cout < < "new pi:" < < pi < < endl;
return 0;
}
如果导出?
python扩展和内嵌有很多种方法
可以参考此贴方法 http://topic.csdn.net/u/20090914/19/6b2c396a-c4f4-4fc3-9e7c-3fcfba504568.html?80658
我比较喜欢用swig的方法来包装导出
贴一下swig的方法
C/C++ code:
/* messagebox.c */
#include <windows.h>
void MsgBox(char* lpszTitle, char* lpszMsg){
MessageBox(NULL, lpszMsg, lpszTitle, MB_OK);
}
编写messagebox.i
C/C++ code:
%module messagebox
%{
extern void MsgBox(char* lpszTitle, char* lpszMsg);
%}
extern void MsgBox(char* lpszTitle, char* lpszMsg);
使用swig生成messagebox_wrap.
相关问答:
在查询后将查询出来的值赋给各输入框
<c:if test="${not empty dataValue}">
fm.SAMPLING_DATE.value=" <c:out value='${dataValue.SAMPLING_DATE}'/ ......
问一下:
#include <stdio.h>
int main()
{
char x, y, z;
int i;
int a[16];
for(i=0; i<=16; i++)
{
a[i] = 0;
......
//C 接口
extern "C"
{
TESSDLL_API int __cdecl GetTessText(const char *imagefile, char *text);
}
//我在C#中声明
//调用C DLL 中的函数
[DllImport("OCRapi.dll&quo ......