Tools and libraries to glue C/C++ APIs to high-level languages
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Zoltan Varga f295c467fe Fix generator problems exposed by qt. 15 years ago
examples Add hello example to the build process. 15 years ago
m4 reorganize 15 years ago
src Fix generator problems exposed by qt. 15 years ago
tests indentation and cosmetic fixes, also .gitignore 15 years ago
tests2 Add regression tests for the c++ binding. 15 years ago
.gitignore indentation and cosmetic fixes, also .gitignore 15 years ago
Makefile.am reorganize 15 years ago
Makefile.include reorganize 15 years ago
README Add the beginnings of a README. 15 years ago
autogen.sh reorganize 15 years ago
configure.ac Add hello example to the build process. 15 years ago

README

Directory structure
-------------------

src/
Mono.VisualC.Interop
The runtime library
generator
The old binding generator
generator2
The new binding generator
qt
Auto generated Qt bindings + test program

tests2/
Regression tests

examples/
Hello
Small, Hello, World! example

Inlining
--------

Inline methods are mapped to a shared library name libFoo-inline.so where libFoo.so is the
original shared library we are binding to. This library should be compiled using gcc's
-fkeep-inline-functions option:

g++ `pkg-config --cflags QtCore QtGui` --shared -fPIC -o libQtGui-inline.so -fkeep-inline-functions qt-gui.cpp `pkg-config --libs QtCore QtGui`