Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/scilab/funcptr/example.i
2019-08-04 21:38:19 -05:00

12 lines
208 B
OpenEdge ABL

/* File : example.i */
%module example
%{
#include "example.h"
%}
/* Wrap a function taking a pointer to a function */
extern int do_op(int a, int b, int (*op)(int, int));
extern int (*funcvar)(int,int);