fpc/tests/webtbs/tw8140b.pp
Jonas Maebe 6c05674d51 * fixed overload checking of virtual and class methods (mantis #8140)
* fixed "overload" keyword checking in Delphi mode

git-svn-id: trunk@6074 -
2007-01-19 17:20:36 +00:00

34 lines
837 B
ObjectPascal

{ %norun }
{$ifdef fpc}
{$mode delphi}
{$endif}
type
inullinterface = interface
//no referencecount, only for fpc, not available in delphi
end;
locateresultty = (loc_timeout,loc_notfound,loc_ok);
tfield = class
end;
locateoptionty = (loo_caseinsensitive,loo_partialkey,
loo_noforeward,loo_nobackward);
locateoptionsty = set of locateoptionty;
imselocate = interface(inullinterface)['{2680958F-F954-DA11-9015-00C0CA1308FF}']
function locate(const key: integer; const field: tfield;
const options: locateoptionsty = []): locateresultty;
end;
imselocate2 = interface(imselocate)['{2680958F-F954-DA11-9015-00C0CA130801}']
function locate(const key: string; const field: tfield;
const options: locateoptionsty = []): locateresultty;
end;
begin
end.