It occurred to me that there must be a large quantity of software that developers may need, that have already been written. In the case of Windows, these would include dll's (dynamic link libraries).
I was wondering if anyone had encountered or compiled a list of helpful dll's?
Thanks!
List of dll's
- RichAlgeni
- Addict

- Posts: 935
- Joined: Wed Sep 22, 2010 1:50 am
- Location: Bradenton, FL
-
IdeasVacuum
- Always Here

- Posts: 6426
- Joined: Fri Oct 23, 2009 2:33 am
- Location: Wales, UK
- Contact:
Re: List of dll's
That would be a really huge list I suspect, just those for the Windows OS(s) is a pretty long list.
Here is a list, has a description for each DLL: http://errordecoder.com/dll-files/
Perhaps this one is more useful: http://xpdll.nirsoft.net/
Another: http://www.dll-files.com/dllindex/index-a.shtml
Of course what you really need is a categorisation of purpose, so you could search by requirement rather than DLL name.
Here is a list, has a description for each DLL: http://errordecoder.com/dll-files/
Perhaps this one is more useful: http://xpdll.nirsoft.net/
Another: http://www.dll-files.com/dllindex/index-a.shtml
Of course what you really need is a categorisation of purpose, so you could search by requirement rather than DLL name.
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
If it sounds simple, you have not grasped the complexity.
- RichAlgeni
- Addict

- Posts: 935
- Joined: Wed Sep 22, 2010 1:50 am
- Location: Bradenton, FL
Re: List of dll's
You're right Ideas, it was a poorly worded request. I just wasn't sure if there might be a site somewhere that had compiled a list of useful dll's.IdeasVacuum wrote:That would be a really huge list I suspect, just those for the Windows OS(s) is a pretty long list.
It would have been great if Microsoft had made it so that dll's were self documenting, so that it was easy to determine the variable types and number of variables passed to each function.
- RichAlgeni
- Addict

- Posts: 935
- Joined: Wed Sep 22, 2010 1:50 am
- Location: Bradenton, FL
Re: List of dll's
Nir Sofer from nirsoft.com is great!
-
Little John
- Addict

- Posts: 4871
- Joined: Thu Jun 07, 2007 3:25 pm
- Location: Berlin, Germany
Re: List of dll's
Are you looking for this?RichAlgeni wrote:It would have been great if Microsoft had made it so that dll's were self documenting, so that it was easy to determine the variable types and number of variables passed to each function.
http://msdn.microsoft.com/en-us/library ... 85%29.aspx
Regards, Little John
Re: List of dll's
I think RichAlgeni is saying it'd be nice if the necessary documentation for using a dll was contained within the dll. Not for the microsoft APIs, but for other DLLs on the Windows platform.Little John wrote:Are you looking for this?RichAlgeni wrote:It would have been great if Microsoft had made it so that dll's were self documenting, so that it was easy to determine the variable types and number of variables passed to each function.
http://msdn.microsoft.com/en-us/library ... 85%29.aspx
Regards, Little John
- RichAlgeni
- Addict

- Posts: 935
- Joined: Wed Sep 22, 2010 1:50 am
- Location: Bradenton, FL
Re: List of dll's
That's exactly what I was thinking Void!void wrote:I think RichAlgeni is saying it'd be nice if the necessary documentation for using a dll was contained within the dll. Not for the microsoft APIs, but for other DLLs on the Windows platform.
Nirsoft.com's dll export process is great at showing you exported functions, but it's unable to determine the number of variables and their type that need to be passed to the function. There is probably a lot of code that is duplicated because of this.
