|
-
May 5th, 2004, 07:28 AM
#1
DLL - functions name
Hi. Does anyone know if I can see all functions name in a DLL without having the source code or the header file.
Thanx
-
May 5th, 2004, 07:39 AM
#2
There are some tools that can show you function names for example PE Explorer http://www.heaventools.com/ but there is stil problem with arguments and their types.
-
May 5th, 2004, 10:01 AM
#3
Thanx a lot. Looks like a useful program. I managed to get the name of the function, but I can't see the arguments etc. It says sth about "information not available". Any ideas?
-
May 5th, 2004, 10:14 AM
#4
try disassembling the dll..
-
May 5th, 2004, 10:31 AM
#5
Originally posted by yiannakop
Thanx a lot. Looks like a useful program. I managed to get the name of the function, but I can't see the arguments etc. It says sth about "information not available". Any ideas?
Depending on a calling convention of these exported functions, U can know a size of all its arguments.
e.g. fun@12 means all arguments has the common size == 12 bytes.
Code disassembling helps here (IDA,...). But even in that case, sometimes U have to have a piece of code (in your case, some binary code using this library) calling the function, U are interested in, to get things completely right.
"UNIX is simple; it just takes a genius to understand its simplicity!"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|