I've received a set of 3rd party .lib files and a single .h file which I want to wrap using SWIG so I can use in another language. All SWIG's examples are with the C\C++ source code, but in my case I don't have the source code.
What should I do different to create the wrapper?
|
|
|||
|
|
|
While the SWIG examples may include definitions (source code) to allow the reader to compile and try them, you will notice that all examples of interface files (.i) only contain declarations (what you typically find in a header file), which is all SWIG needs to create a wrapper. The normal way of writing an interface file goes like this:
If your header file is simple and you want to export every definition in it, you might get away with an interface file that looks like this:
Notice the Once you have your wrapper, you link it with the lib as you would link the objects created from the source code in the examples. |
|||
|