CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2003
    Location
    Brooklyn, New York
    Posts
    1

    Declaring an API function with UNKNOWN arguments

    Hello there,

    Does anybody know a way to find the Exported function's signature? I am trying to use a DLL which is a TWAIN driver.
    I know the names of the functions that the DLL exports, that's easy, but I can't see what the Headers look like. So, how do I find a way in?

    I was thinking to write a program which dynamically constructs declaration strings and tries to compile a VB project. If it can't be compiled, the declaration is wrong, and so on... There will be a lot of permutations though

    I haven't tried it yet. I will use it as my last resort if no one has a better suggestion.

    Thanks for all your help and consideration!

    Rick

  2. #2
    Join Date
    Sep 2000
    Location
    Russia
    Posts
    262
    dumpbin /exports YOUR_DLL_NAME

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured