A Library is just like a unit or a program:
_________________________________________________________________________________________________________
Libraries
___________________________________________________________________
By default, functions and procedures that are declared and implemented in library are not available to a programmer that wishes to use this library.
In order to make functions or procedures available from the library, they must be exported in an export clause:
_________________________________________________________________________________________________________
Exports clause
___________________________________________________________________
Under Win32, an index clause can be added to an exports entry. an index entry must be a positive number larger or equal than 1.
Optionally, an exports entry can have a name speci er. If present, the name speci er gives the exact name (case sensitive) of the function in the library.
If neither of these constructs is present, the functions or procedures are exported with the exact names as speci ed in the exports clause.