intf.inc 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. This file is part of the Free Component Library (FCL)
  3. Copyright (c) 2002 by the Free Pascal development team
  4. See the file COPYING.FPC, included in this distribution,
  5. for details about the copyright.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. **********************************************************************}
  10. constructor TInterfaceList.Create;
  11. begin
  12. end;
  13. destructor TInterfaceList.Destroy;
  14. begin
  15. end;
  16. function TInterfaceList.Get(i : Integer) : IUnknown;
  17. begin
  18. end;
  19. function TInterfaceList.GetCapacity : Integer;
  20. begin
  21. end;
  22. function TInterfaceList.GetCount : Integer;
  23. begin
  24. end;
  25. procedure TInterfaceList.Put(i : Integer;item : IUnknown);
  26. begin
  27. end;
  28. procedure TInterfaceList.SetCapacity(NewCapacity : Integer);
  29. begin
  30. end;
  31. procedure TInterfaceList.SetCount(NewCount : Integer);
  32. begin
  33. end;
  34. procedure TInterfaceList.Clear;
  35. begin
  36. end;
  37. procedure TInterfaceList.Delete(index : Integer);
  38. begin
  39. end;
  40. procedure TInterfaceList.Exchange(index1,index2 : Integer);
  41. begin
  42. end;
  43. function TInterfaceList.First : IUnknown;
  44. begin
  45. end;
  46. function TInterfaceList.IndexOf(item : IUnknown) : Integer;
  47. begin
  48. end;
  49. function TInterfaceList.Add(item : IUnknown) : Integer;
  50. begin
  51. end;
  52. procedure TInterfaceList.Insert(i : Integer;item : IUnknown);
  53. begin
  54. end;
  55. function TInterfaceList.Last : IUnknown;
  56. begin
  57. end;
  58. function TInterfaceList.Remove(item : IUnknown): Integer;
  59. begin
  60. end;
  61. procedure TInterfaceList.Lock;
  62. begin
  63. end;
  64. procedure TInterfaceList.Unlock;
  65. begin
  66. end;
  67. function TInterfaceList.Expand : TInterfaceList;
  68. begin
  69. end;