Brett McCoy wrote: > I found a tool called PEBrowse which can be used to inspect symbols in > a DLL or EXE, and sure enough, so symbols were being exported. I > abandoned the use of the .def file and just added the export symbols > into the linker options. And whaddya know? It worked. Plugin happily > loaded into the host application and is functional, and now I can > debug away.
Meh. I tried PEBrowse a while back. It doesn't work very well. And is WAY overkill for your needs (i.e. To determine what exports, if any, are in the DLL). Dependency Walker is really all you need. If you are going to have a lot of exports, a DEF file is a much cleaner way to go. But as long as it works... -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
