NO

Author Topic: PODUMP not displaying exported functions  (Read 2679 times)

Offline Vortex

  • Member
  • *
  • Posts: 858
    • http://www.vortex.masmcode.com
PODUMP not displaying exported functions
« on: July 14, 2012, 11:07:55 AM »
I created the .def file below :

Code: [Select]
LIBRARY test
EXPORTS

"func1"
"_func2"
"_anotherfunc@4"

Running polib.exe V7.00.0 :

Code: [Select]
polib /DEF:test.def /OUT:test.lib /MACHINE:x86
Podump does not list the exported functions :

Code: [Select]
podump /EXPORTS test.lib

Dump of test.lib

File type: LIB

SUMMARY
      14 .idata$2
      14 .idata$3
       4 .idata$4
       4 .idata$5
       A .idata$6

Trying the same with Microsoft's dumpbin tool :

Code: [Select]
\masm32\bin\dumpbin.exe /EXPORTS test.lib
.
.
Dump of file test.lib

File Type: LIBRARY

     Exports

       ordinal    name

                  _anotherfunc@4
                  __func2
                  _func1

  Summary

          14 .idata$2
          14 .idata$3
           4 .idata$4
           4 .idata$5
           A .idata$6
Code it... That's all...

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2266
    • http://www.smorgasbordet.com
Re: PODUMP not displaying exported functions
« Reply #1 on: September 01, 2012, 08:14:49 PM »
Not a bug since it's never been implemented in PODUMP, nor documented as being that. I will add this to the 'wish-list' ...
/Pelle