how to get exported function name(exported by ordinal from a dll or in portable-execu

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Rajakumarrs
    New Member
    • Aug 2009
    • 9

    how to get exported function name(exported by ordinal from a dll or in portable-execu

    i am trying to retrieve exported function names from a dll ,using export directory .I can get a Export function (export by name)...i cant get function name(export only by ordinals)...giv e some logic ..i am using vista ,thank u...
  • RedSon
    Recognized Expert Expert
    • Jan 2007
    • 4980

    #2
    are you using dumpbin?

    Comment

    • Rajakumarrs
      New Member
      • Aug 2009
      • 9

      #3
      i tried dumpbin in command window ,it does not work ...i am using vista..is there is another logic to find the names....?

      Comment

      • RedSon
        Recognized Expert Expert
        • Jan 2007
        • 4980

        #4
        is dumpbin on your PATH? if you run dumpbin what happens? do you have it installed as part of an SDK or part of visual studio?

        Comment

        • Rajakumarrs
          New Member
          • Aug 2009
          • 9

          #5
          i cannot predict the mistaken while using dumpbin ,if its by syntax mistake or does not supported to vista

          Comment

          • Rajakumarrs
            New Member
            • Aug 2009
            • 9

            #6
            'dumpbin' is not recognized as an internal or external command ,operable program or patch file......its the message when i'm trying in cmd....redson

            Comment

            • RedSon
              Recognized Expert Expert
              • Jan 2007
              • 4980

              #7
              It sounds like dumpbin is not on your PATH. See if it exists in C:\program files\microsoft visual studio 8\VC\bin.

              If it does, put that directory on your PATH or reference the full path name to dumpbin when you try to examine your dll.

              Comment

              Working...