Microsoft LINK -----------------------------------------------------------------------
ApiHooks.lib   - standard import library in Microsoft format
               - use with MS LINK (VC, DDK, VB) 

iApiHooks.lib  - import library in Microsoft format; names aren't
                 decorated (HookApiA instead of HookApiA@28)   
               - use with MS LINK (VC, DDK, VB)

SApiHooks.lib  - standard library (for static linking) in Microsoft format
               - use with MS LINK (VC, DDK, VB) 

SiApiHooks.lib - library (for static linking) in Microsoft format; names aren't
                 decorated (HookApiA instead of HookApiA@28)   
               - use with MS LINK (VC, DDK, VB)

K32Ord1.lib    - used by SApiHooks.lib and SiApiHooks.lib

ApiHooks.def   - if you're buiding DLL containing code from SApiHooks.lib
                 or SiApiHooks.lib and you want to export some/all AH functions
                 together with your own exports, add this file to your .def file
                 and uncomment (remove ;) AH function name(s) you want to export

Turbo Linker 32 ----------------------------------------------------------------------
bApiHooks.lib  - import library in Borland format
               - use with Borland TLINK32, ILINK32 (BC, TASM)

SbApiHooks.lib - library in Borland format
               - use with Borland TLINK32 (BC, TASM). Option -o must be specified
                 on TLINK32's command line

bApiHooks.def  - for SbApiHooks.lib. It must be specified on TLINK32's command line
                 as .def file 
               - if you're buiding DLL containing code from SbApiHooks.lib and you
                 want to export some/all AH functions together with your own exports,
                 add this file to your .def file and uncomment (remove ;) AH function
                 name(s) you want to export

LCCLNK ----------------------------------------------------------------------
lApiHooks.lib  - import library in pseudoMicrosoft format
               - use with LCCLNK (LCC-Win32)

lApiHooks.exp  - lApiHooks.lib was created by BUILDLIB lApiHooks.exp

Static linking is not supported.