
Hi!
Amit> I have libsmi-0.2.16 on my Win NT platform. Amit> I was able to create the smi.lib and other .exe by running nmake under Amit> libsmi-0.2.16/win.
Amit> Now, I do not want to create smidump.exe, but I want to create a Amit> whole Library which should hold all the .objs of LIBSMIOBJS and Amit> SMIDUMPOBJS form makefile So that instaed of calling Amit> smidump.exe, I can make calls to functions like Amit> initIdentifiers() or initImports() etcc. from my code.
There are no functions like initIdentifiers() or initImports() in the library. Don't look in the tools/ directory for library code. All API functions start with the `smi' prefix, e.g. smiInit(), and are declared in lib/smi.h and documented in the section 3 man pages (in case you are able to read man pages on any system).
-frank