Chris wrote:
I had a look at the file's "readme". It looks like it might be possible to call the DLL with DllCall. The interface is presented simply as:
COMCall(method, pobj [,arg1 ...])
That's the interface from the host program (WinBatch).
If you look at the export table (I just downloaded the file), you will see:
_WILExtender2
_WILExtender2@40
_WILExtenderQuery
_WILExtenderQuery@12
So obviously, as I feared, these are standardized function names for use of the application to extend. It probably call these functions to know which functions are defined in the DLL, etc.
Now, the .wbt files give examples of use, it may be of inspiration for a similar DLL.