Subject TIB_Handle
Author Kevin Stanton
Greetings,
I've seen references to passing the TIB_Handle to a DLL or package to set
the dbHandleShared:

procedure DLLInterface(Handle: TIB_Handle);
begin
DLL_IB_Connection.dbHandleShared := Handle;
...
do what you need to do
...
end;


The problem I'm having is when I try to compile, TIB_Handle is undeclared.
I've looked in the help and even searched source files for TIB_Handle and
cannot find references.

What unit do I need to add to my uses clause?

Thanks in Advance,
Kevin