Now I interest in API but I don't know how I can get the information of each API file.Such as I know in netapi32.dll has the function that can password in NT but I have no idea to coding it.Where can I get knowledge for API??
Printable View
Now I interest in API but I don't know how I can get the information of each API file.Such as I know in netapi32.dll has the function that can password in NT but I have no idea to coding it.Where can I get knowledge for API??
www.allapi.net
www.vbapi.com
They both have tutorials and references. Most of the time APIs aren't known by the files they are in, but rather what they do and it's name/declaration.
Also when you get more advanced with API try
http://www.mvps.org/vbnet
Bear in mind that if you have a DLL, you *cannot* use its functions unless you have the documentation for it (this is available for most parts of the Win32 API from Microsoft). The DLL itself contains the function names, but not their parameters.
Just something to bear in mind so that we don't answer that question again ;)