Re: Calling COM Components from Vim (Win32)

2006-10-15 Thread Yukihiro Nakadaira
Although this is still a bit inconvenient, it is possible to keep DLL loaded by incrementing reference count itself. /* test.c */ #ifdef WIN32 # include windows.h #else # include dlfcn.h #endif #ifdef _MSC_VER # define EXPORT __declspec(dllexport) #else # define EXPORT #endif EXPORT int

Re: Calling COM Components from Vim (Win32)

2006-10-14 Thread Martin Stubenschrott
On Sat, Oct 14, 2006 at 03:44:33PM +0200, Eric Smith wrote: I've scanned the vim-dev archives looking for any suggestions for and/or attempts at creating a means of calling dual-interface COM objects from within the Win32 version of Vim, and come up empty. IMHO, this would be a useful