mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-06 01:18:57 +02:00
114 lines
2.0 KiB
PHP
114 lines
2.0 KiB
PHP
{
|
|
This file is part of the Free Component Library (FCL)
|
|
Copyright (c) 2002 by the Free Pascal development team
|
|
|
|
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.
|
|
|
|
**********************************************************************}
|
|
|
|
constructor TInterfaceList.Create;
|
|
begin
|
|
end;
|
|
|
|
|
|
destructor TInterfaceList.Destroy;
|
|
begin
|
|
end;
|
|
|
|
|
|
function TInterfaceList.Get(i : Integer) : IUnknown;
|
|
begin
|
|
end;
|
|
|
|
|
|
function TInterfaceList.GetCapacity : Integer;
|
|
begin
|
|
end;
|
|
|
|
|
|
function TInterfaceList.GetCount : Integer;
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure TInterfaceList.Put(i : Integer;item : IUnknown);
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure TInterfaceList.SetCapacity(NewCapacity : Integer);
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure TInterfaceList.SetCount(NewCount : Integer);
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure TInterfaceList.Clear;
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure TInterfaceList.Delete(index : Integer);
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure TInterfaceList.Exchange(index1,index2 : Integer);
|
|
begin
|
|
end;
|
|
|
|
|
|
function TInterfaceList.First : IUnknown;
|
|
begin
|
|
end;
|
|
|
|
|
|
function TInterfaceList.IndexOf(item : IUnknown) : Integer;
|
|
begin
|
|
end;
|
|
|
|
|
|
function TInterfaceList.Add(item : IUnknown) : Integer;
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure TInterfaceList.Insert(i : Integer;item : IUnknown);
|
|
begin
|
|
end;
|
|
|
|
|
|
function TInterfaceList.Last : IUnknown;
|
|
begin
|
|
end;
|
|
|
|
|
|
function TInterfaceList.Remove(item : IUnknown): Integer;
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure TInterfaceList.Lock;
|
|
begin
|
|
end;
|
|
|
|
|
|
procedure TInterfaceList.Unlock;
|
|
begin
|
|
end;
|
|
|
|
|
|
function TInterfaceList.Expand : TInterfaceList;
|
|
begin
|
|
end;
|
|
|
|
|