forked from KolibriOS/kolibrios
[fp] rtl changes
git-svn-id: svn://kolibrios.org@780 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
80346e52bc
commit
c521e1fc73
31
programs/develop/fp/rtl/dynlibs.inc
Normal file
31
programs/develop/fp/rtl/dynlibs.inc
Normal file
@ -0,0 +1,31 @@
|
||||
{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}
|
Loading…
Reference in New Issue
Block a user