Previous: Creating an Ada Spec for the DLL Services, Up: Using DLLs with GNAT


9.3.5.9 Creating an Import Library

If a Microsoft-style import library API.lib or a GNAT-style import library libAPI.dll.a or libAPI.a is available with API.dll you can skip this section. You can also skip this section if API.dll or libAPI.dll is built with GNU tools as in this case it is possible to link directly against the DLL. Otherwise read on.

The Definition File

As previously mentioned, and unlike Unix systems, the list of symbols that are exported from a DLL must be provided explicitly in Windows. The main goal of a definition file is precisely that: list the symbols exported by a DLL. A definition file (usually a file with a .def suffix) has the following structure:

    [LIBRARY `name`]
    [DESCRIPTION `string`]
    EXPORTS
       `symbol1`
       `symbol2`
       ...
`LIBRARY `name`'
This section, which is optional, gives the name of the DLL.
`DESCRIPTION `string`'
This section, which is optional, gives a description string that will be embedded in the import library.
`EXPORTS'
This section gives the list of exported symbols (procedures, functions or variables). For instance in the case of API.dll the EXPORTS section of API.def looks like:
         EXPORTS
            some_var
            get

Note that you must specify the correct suffix (@`nn') (see Windows Calling Conventions) for a Stdcall calling convention function in the exported symbols list.

There can actually be other sections in a definition file, but these sections are not relevant to the discussion at hand.

GNAT-Style Import Library

To create a static import library from API.dll with the GNAT tools you should proceed as follows:

Microsoft-Style Import Library

With GNAT you can either use a GNAT-style or Microsoft-style import library. A Microsoft import library is needed only if you plan to make an Ada DLL available to applications developed with Microsoft tools (Mixed-Language Programming on Windows).

To create a Microsoft-style import library for API.dll you should proceed as follows: