> I looked at gtk-sharp and it seems like they have some autogenerated XML to > define the glue layer or something.....
They are using some of that, and some delegates to call back and forth. Mono internally has mechanisms to call from C to C# land (just grep the sources for it). The other way around, can be done through P/Invoke, or through internalcalls. You could register more API calls as internalcalls. Sorry about the lack of docs, but you should be able to find about them if you grep the source code for Mono. Miguel _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
