List of dll's

Everything else that doesn't fall into one of the other PB categories.
User avatar
RichAlgeni
Addict
Addict
Posts: 935
Joined: Wed Sep 22, 2010 1:50 am
Location: Bradenton, FL

List of dll's

Post by RichAlgeni »

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!
IdeasVacuum
Always Here
Always Here
Posts: 6426
Joined: Fri Oct 23, 2009 2:33 am
Location: Wales, UK
Contact:

Re: List of dll's

Post by IdeasVacuum »

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.
IdeasVacuum
If it sounds simple, you have not grasped the complexity.
User avatar
RichAlgeni
Addict
Addict
Posts: 935
Joined: Wed Sep 22, 2010 1:50 am
Location: Bradenton, FL

Re: List of dll's

Post by RichAlgeni »

IdeasVacuum wrote:That would be a really huge list I suspect, just those for the Windows OS(s) is a pretty long list.
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.

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.
User avatar
RichAlgeni
Addict
Addict
Posts: 935
Joined: Wed Sep 22, 2010 1:50 am
Location: Bradenton, FL

Re: List of dll's

Post by RichAlgeni »

Nir Sofer from nirsoft.com is great!
Little John
Addict
Addict
Posts: 4871
Joined: Thu Jun 07, 2007 3:25 pm
Location: Berlin, Germany

Re: List of dll's

Post by Little John »

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.
Are you looking for this?
http://msdn.microsoft.com/en-us/library ... 85%29.aspx

Regards, Little John
void
Enthusiast
Enthusiast
Posts: 116
Joined: Sat Aug 27, 2011 9:50 pm
Location: Washington, USA

Re: List of dll's

Post by void »

Little John wrote:
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.
Are you looking for this?
http://msdn.microsoft.com/en-us/library ... 85%29.aspx

Regards, Little John
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.
User avatar
RichAlgeni
Addict
Addict
Posts: 935
Joined: Wed Sep 22, 2010 1:50 am
Location: Bradenton, FL

Re: List of dll's

Post by RichAlgeni »

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.
That's exactly what I was thinking Void!

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.
Post Reply