{ $Id$ This file is part of the Free Pascal run time library. Copyright (c) 1999-2000 by the Free Pascal development team Implements OS-independent loading of dynamic libraries. See the file COPYING.FPC, included in this distribution, for details about the copyright. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. **********************************************************************} {$MODE OBJFPC} unit dynlibs; interface { --------------------------------------------------------------------- Read OS-dependent interface declarations. ---------------------------------------------------------------------} {$define readinterface} {$i dynlibs.inc} {$undef readinterface} { --------------------------------------------------------------------- OS - Independent declarations. ---------------------------------------------------------------------} Function LoadLibrary(Name : AnsiString) : TLibHandle; Function GetProcedureAddress(Lib : TlibHandle; ProcName : AnsiString) : Pointer; Function UnloadLibrary(Lib : TLibHandle) : Boolean; // Kylix/Delphi compability Function FreeLibrary(Lib : TLibHandle) : Boolean; Function GetProcAddress(Lib : TlibHandle; ProcName : AnsiString) : Pointer; Implementation { --------------------------------------------------------------------- OS - Independent declarations. ---------------------------------------------------------------------} {$i dynlibs.inc} Function FreeLibrary(Lib : TLibHandle) : Boolean; begin Result:=UnloadLibrary(lib); end; Function GetProcAddress(Lib : TlibHandle; ProcName : AnsiString) : Pointer; begin Result:=GetProcedureAddress(Lib,Procname); end; end. { $Log$ Revision 1.5 2004-06-13 09:34:52 michael + Fix for bug 3164 by Michalis Kamburelis Revision 1.4 2004/06/12 13:30:33 michael Fixed bug 3156, as suggested by Michalis Kamburelis Revision 1.3 2004/05/04 17:14:52 marco * some delphi compat aliases added. Revision 1.2 2002/09/07 15:07:45 peter * old logs removed and tabs fixed }