Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

how to read the export table in DLL

Juan_Senent
Beginner
702 Views
Hi All,

I would like to know if there is a way to read all the names of the exported functions in a DLL using FORTRAN.
I have seen some C code that would do it but before going that route I would like to know
if there are routines in FORTRAN that c
an help with this task.

thanks,

Juan

0 Kudos
1 Reply
Wendy_Doerner__Intel
Valued Contributor I
702 Views
From the documentation:

Checking the DLL Symbol Export Table

To make sure that everything that you want to be visible shows up in the export table, look at the export information of an existing DLL file by using QuickView in the Windows Explorer File menu or the following DUMPBIN command:

  DUMPBIN /exports file.dll

------

Wendy

Attaching or including files in a post

0 Kudos
Reply