forked from KolibriOS/kolibrios
c521e1fc73
git-svn-id: svn://kolibrios.org@780 a494cfbc-eb01-0410-851d-a64ba20cac60
32 lines
373 B
PHP
32 lines
373 B
PHP
{TODO}
|
|
|
|
{$ifdef readinterface}
|
|
|
|
|
|
type
|
|
TLibHandle = Longint;
|
|
|
|
const
|
|
NilHandle = 0;
|
|
|
|
|
|
{$else}
|
|
|
|
|
|
function LoadLibrary(Name: AnsiString): TLibHandle;
|
|
begin
|
|
Result := 0;
|
|
end;
|
|
|
|
function GetProcedureAddress(Lib: TLibHandle; ProcName: AnsiString): Pointer;
|
|
begin
|
|
Result := nil;
|
|
end;
|
|
|
|
function UnloadLibrary(Lib: TLibHandle): Boolean;
|
|
begin
|
|
Result := False
|
|
end;
|
|
|
|
{$endif}
|