Polo wrote:It is hard when you've got no idea how to do this

I guess so since you mentioned you don't know C++.
Unfortunately I can't give you a good example code at this time, but there are
several examples floating around here and on the German forums.
To start with you can try to compile a DLL in C++ (shouldn't be too hard, there are lots of examples)
and create custom functions (simple AddTest(a, b)) which you export and then import in PB.
Once you managed to do that you basically just need to create a wrapper function for each method of each class
(including constructors and destructors). After you figured out how to export functions in C++ (maybe someone can give you an example),
it won't be too difficult to create the wrapper because it's the same procedure over and over again.
I guess this post wasn't too helpful, sorry.