Dll to module definition file converter

Started by Vortex, November 07, 2023, 07:08:37 PM

Previous topic - Next topic

Vortex

DllToDef is a command-line tool writing all the exported functions of a Dll to a module definition file. This is a BCX project, the Basic source code is converted to C.
Code it... That's all...

John Z

Very nice Vortex.  Example .def output testing

C:\Users\John\Downloads\DllToDef>dlltodef32 libxlsxio_write.dll
libxlsxio_write.dll exports 12 functions.

C:\Users\John\Downloads\DllToDef>dlltodef64 libxlsxio_write.dll   <- on purpose  :)
Error : libxlsxio_write.dll could not be loaded.

C:\Users\John\Downloads\DllToDef>dlltodef64 libxlsxio_write64.dll
libxlsxio_write64.dll exports 12 functions.


LIBRARY libxlsxio_write64
EXPORTS
"xlsxiowrite_add_cell_datetime"
"xlsxiowrite_add_cell_float"
"xlsxiowrite_add_cell_int"
"xlsxiowrite_add_cell_string"
"xlsxiowrite_add_column"
"xlsxiowrite_close"
"xlsxiowrite_get_version"
"xlsxiowrite_get_version_string"
"xlsxiowrite_next_row"
"xlsxiowrite_open"
"xlsxiowrite_set_detection_rows"
"xlsxiowrite_set_row_height"


John Z

Vortex

Hi John,

Thanks for the tests. The format of the output is compatible with Pelle's .def file convention, the expoted symbols are enclosed between double quotes.
Code it... That's all...

TimoVJL

May the source be with you

John Z

Hi TimoVJL,

Integrated is nice!  A lot of downloads for these.

Adding to my setup too.

Thanks,

John Z