.dll files

  • Thread starter Thread starter adam
  • Start date Start date
A

adam

what do .dll files do? i know they are dynamic link
library..but what does all this mean?
 
adam said:
what do .dll files do? i know they are dynamic link
library..but what does all this mean?

A DLL contains a collection of useful functions that any program can
call. GDI32.dll (one of the core windows files), for example, contains
functions that all Windows GUI programs use to draw text, lines,
boxes, and whatever else they need to put on the screen.
 
DLL An abbreviation for dynamic link library, a file containing a collection
of Windows functions designed to perform a specific class of operations.
Most DLLs carry the .DLL extension, but some Windows DLLs, such as
Gdi32.exe, use the .EXE extension. Functions within DLLs are called
(invoked) by applications as necessary to perform the desired operation.

http://www.pace.ch/cours/glossary.htm
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top