Problem with importing a function in a dll
I want to import a function that it compress file in ace (ace.dll), zip(zip.dll), and rar.dll . I want to view the exported function that can be used in a c++ program.
please help me, to find how or give me some url.
Thank you.
Use windows Quickview to see the names of the exported functiones, if you don't have Dependency walker that comes with visual studio.
What parameters you can send, is not possible to extract from a DLL that does not use C-function names. If you're really in need, you can disassemble the dll, and see how much parameters from the stack the function uses to get a little clue.
Edited by - mr BiCEPS on December 18, 2000 12:57:02 PM
What parameters you can send, is not possible to extract from a DLL that does not use C-function names. If you're really in need, you can disassemble the dll, and see how much parameters from the stack the function uses to get a little clue.
Edited by - mr BiCEPS on December 18, 2000 12:57:02 PM
I thought all exported .dll function had to use C names?
And whats the easier/faster way to get the parameters other than disasm?
And whats the easier/faster way to get the parameters other than disasm?
- The trade-off between price and quality does not exist in Japan. Rather, the idea that high quality brings on cost reduction is widely accepted.-- Tajima & Matsubara
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement