I am trying to create a D application that uses a COM file (third-party) .dll so that I can clear the text field of another application so that I can hear an error when a certain line appears.
However, the third party does not provide the .lib, .def or .h files that come with the dll (at least with the free trial). I can create a .lib file using implib , but I do not see any of the library functions in the created .lib.
Their (visual C ++) samples use the #import directive to bind it, however this is useless to me ...
On the side of the note, how can I get the correct interfaces (in .di with the template that binds) the dll automatically? I ask that the correct connection does not depend on my (probably incorrect) translation of functions. They have a web page that gives all the features, but the object model is a bit chaotic, to say the least.
source share