i begin to understand how dll files work
but i don't understand a thing
with view depencies i can see wich function thatthere can be used in a dll but
how do i know how many parameters that there must be send to that function
please explain to me
Printable View
i begin to understand how dll files work
but i don't understand a thing
with view depencies i can see wich function thatthere can be used in a dll but
how do i know how many parameters that there must be send to that function
please explain to me
DLL files are quite complicated at times.
They cannot only store functions but they can also store resources like icons and the like. There references are all kept in in a table in the file and in most cases programs like that scan throughand read off the references but they can not extract the prameters (For reasons that are too complicated to explain).
If you need to get something mike the Microsoft Software Development Kit or, take the function name and look it up on a website like the one sbelow:
http://www.mentalis.org/apilist/apilist.php
http://msdn.microsoft.com/library/
Hope that helps,
RyanJ