mirror of https://github.com/swig/swig
25 lines
424 B
OpenEdge ABL
25 lines
424 B
OpenEdge ABL
%module voidtest
|
|
|
|
%inline %{
|
|
|
|
void globalfunc(void) {
|
|
}
|
|
|
|
class Foo {
|
|
public:
|
|
Foo(void) { }
|
|
void memberfunc(void) { }
|
|
void* get_this() { return this; }
|
|
static void staticmemberfunc(void) { }
|
|
};
|
|
|
|
|
|
void *vfunc1(void *f) { return f; }
|
|
void *vfunc2(Foo *f) { return f; }
|
|
Foo *vfunc3(void *f) { return (Foo *) f; }
|
|
Foo *vfunc4(Foo *f) { return f; }
|
|
|
|
bool test_pointers_equal(void *a, void *b) { return a == b; }
|
|
|
|
%}
|