Changeset 345 for trunk/ItemList.pas


Ignore:
Timestamp:
Dec 23, 2024, 11:25:36 AM (8 hours ago)
Author:
chronos
Message:
  • Modified: Improved test cases.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ItemList.pas

    r344 r345  
    253253end;
    254254
    255 function TItemList<T>.QueryInterface(constref iid: tguid; out obj): longint;
     255function TItemList<T>.QueryInterface(constref iid: tguid; out obj): LongInt;
    256256  stdcall;
    257257begin
    258 end;
    259 
    260 function TItemList<T>._AddRef: Longint; stdcall;
    261 begin
    262 end;
    263 
    264 function TItemList<T>._Release: Longint; stdcall;
    265 begin
     258  Result := 0;
     259end;
     260
     261function TItemList<T>._AddRef: LongInt; stdcall;
     262begin
     263  Result := 0;
     264end;
     265
     266function TItemList<T>._Release: LongInt; stdcall;
     267begin
     268  Result := 0;
    266269end;
    267270
Note: See TracChangeset for help on using the changeset viewer.