0
votes
1answer
35 views
wxlua bindings does not work with my shaderobjects made using SWIG
Hi,
I made a class using wxwdigets
//wrapper over wxIPV4address
class IPV4addressLua : public wxIPV4address
{
public:
IPV4addressLua();
~IPV4addr …
1
vote
0answers
83 views
Access violation on run function from dll
I have DLL, interface on C++ for work with he. In bcb, msvc it works fine. I want to use Python-scripts to access function in this library.
Generate python-package using Swig.
Fil …
1
vote
2answers
64 views
Python callback with SWIG wrapped type
I'm trying to add a python callback to a C++ library as illustrated:
template<typename T> void doCallback(shared_ptr<T> data) {
PyObject* pyfunc; //I have this alre …
0
votes
2answers
54 views
Creating Windows DLL from C++ source files
I have multiple source files in C++ using which i want to create a Dynamic link library.
I see this happening in linux with gcc -shared and ln
however for Windows i suppose i wo …
1
vote
3answers
97 views
Releasing python GIL in C++ code
Hi,
I've got a library written in C++ which I wrap using SWIG and use in python. Generally there is one class with few methods. The problem is that calling these methods may be tim …
0
votes
0answers
25 views
Embed Python in NI CVI(LabWindows)
I need to access LabWindows API and/or fucntions written in labwindows from Python.
My approach so far
I have been able to do so in Visual studio using SWIG to some extent, but my …
2
votes
2answers
58 views
Using SWIG with pointer to function in C struct
I'm trying to write a SWIG wrapper for a C library that uses pointers to functions in its structs. I can't figure out how to handle structs that contain function pointers. A simp …
1
vote
2answers
54 views
Embedding Ruby in a C++ application using SWIG?
I've successfully created Ruby-C++ bindings in the past using SWIG where the C++ code was compiled as a dynamic library with the Ruby script connecting to it.
However, I'd like to …
0
votes
3answers
77 views
SWIG pointers and Java arrays
The SWIG documentation explains how a variety of input types in C, like this:
void spam1(Foo *x); // Pass by pointer
void spam2(Foo &x); // Pass by reference
void sp …
1
vote
1answer
28 views
Using SWIG with a build system
Anyone have experience with using SWIG (the interface generator)?
I have a C project which I would like to expose to a bunch of other languages/frameworks, like Python, Java, .NE …
0
votes
1answer
40 views
Generating SWIG bindings with CMake
How would I generate automatic bindings for a C project that is built using CMake?
I want to generate bindings for Python, Java, .NET, PHP, Perl, TCL, Ruby and Octave automaticall …
0
votes
2answers
50 views
Java and SDL_GetKeyState()
I'm trying to convert to Java some code that uses SDL. I'm using the sdljava bindings.
sdljava uses SWIG as the bridge between the C datatypes and Java. To get the equivalent of …
1
vote
1answer
62 views
SWIG / Lua: Determine member field data type
SWIG graciously provides the swig_type() function to get a string representation of the data type of a passed userdata object. However, in the case of member fields, SWIG and Lua c …
0
votes
1answer
58 views
How do I define a SWIG typemap for a reference to pointer?
I have a Publisher class written in C++ with the following two methods:
PublishField(char* name, double* address);
GetFieldReference(char* name, double*& address);
Python bi …
0
votes
2answers
192 views
How do I access List template of C++ program from Perl using SWIG?
I want to access a template List of C++ program from a Perl script and use those values.
Example code:
typedef list < Struct1 * > sturct1_list;
struct Struct2
{
int i …
