This is a tool for generating .def
s (and then .lib
s) from .dll
s I created while helping @hbomb79
batch:
dumpbin -exports <lib>.dll > <lib>.dll.exports
shell:
{echo LIBRARY <lib>.dll; echo EXPORTS; lua manip.lua <lib>.dll.exports.txt} > <lib>.def
batch:
lib /def:<lib>.def