thawee 0 Posted September 16, 2011 I have seen many programs that use the DLLcall command, and I find myself very interested in using it. The issue I am confused on is how do we know which DLLs have what we want in them? Is there a good website I can go and read up on all the cool things stored in DLLs? Thanks Thawee Share this post Link to post Share on other sites
monoscout999 10 Posted September 16, 2011 (edited) If the Dll is documented you can see what functions store the dll.About Windows DLLs this will help you DLL Description of Contents GDI32.dll Graphics Device Interface (GDI) functions for device output, such as those for drawing and font management. Kernel32.dll Low-level operating system functions for memory management and resource handling. User32.dll Windows management functions for message handling, timers, menus, and communications. Check this link to see some of the windows functions that you can call by DllCall http://msdn.microsoft.com/en-us/library/ff468919%28v=VS.85%29.aspxThere is a lot more but you should search them in MSDN Edited September 16, 2011 by monoscout999 Share this post Link to post Share on other sites
thawee 0 Posted September 16, 2011 Thanks, I appreciate it very much Thawee Share this post Link to post Share on other sites