J
Java and Swing
Is there some other way, besides SWIG, which will allow me to call
functions inside an Ansi C DLL?
Example (C):
defs.h
-------
typedef unsigned long MY_DIGIT;
myapp.c
-----------------
#include "defs.h"
char *DoSomeStuff(char *input, MY_DIGIT *digits) {
...
}
...thats an example of something I would like to call from Python.
functions inside an Ansi C DLL?
Example (C):
defs.h
-------
typedef unsigned long MY_DIGIT;
myapp.c
-----------------
#include "defs.h"
char *DoSomeStuff(char *input, MY_DIGIT *digits) {
...
}
...thats an example of something I would like to call from Python.