.obj files produced by Borland compilers link with bApiHooks.lib.
.obj files produced by Microsoft compilers link with ApiHooks.lib.
.obj files produced by LCC-Win32 link with lApiHooks.lib.
DLLs written in LCC must export something.
Use __EXPORT and deffile in order to export ApiHookChain,
GetApiHookChain and other functions instead of __declspec(dllexport). 

Deffile for TLINK32 should contain:
EXPORTS ApiHookChain=_ApihookChain
or
EXPORTS GetApiHookChain=_GetApihookChain

Deffile for LCCLNK should contain:
EXPORTS ApiHookChain=ApihookChain
or
EXPORTS GetApiHookChain=GetApihookChain
