mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00

the IInterface implementation to be XPCom-compatible --- Merging r15997 through r16179 into '.': U rtl/inc/variants.pp U rtl/inc/objpash.inc U rtl/inc/objpas.inc U rtl/objpas/classes/persist.inc U rtl/objpas/classes/compon.inc U rtl/objpas/classes/classesh.inc A tests/test/tconstref1.pp A tests/test/tconstref2.pp A tests/test/tconstref3.pp U tests/test/tinterface4.pp A tests/test/tconstref4.pp U tests/webtbs/tw10897.pp U tests/webtbs/tw4086.pp U tests/webtbs/tw15363.pp U tests/webtbs/tw2177.pp U tests/webtbs/tw16592.pp U tests/tbs/tb0546.pp U compiler/sparc/cpupara.pas U compiler/i386/cpupara.pas U compiler/pdecsub.pas U compiler/symdef.pas U compiler/powerpc/cpupara.pas U compiler/avr/cpupara.pas U compiler/browcol.pas U compiler/defcmp.pas U compiler/powerpc64/cpupara.pas U compiler/ncgrtti.pas U compiler/x86_64/cpupara.pas U compiler/opttail.pas U compiler/htypechk.pas U compiler/tokens.pas U compiler/objcutil.pas U compiler/ncal.pas U compiler/symtable.pas U compiler/symsym.pas U compiler/m68k/cpupara.pas U compiler/regvars.pas U compiler/arm/cpupara.pas U compiler/symconst.pas U compiler/mips/cpupara.pas U compiler/paramgr.pas U compiler/psub.pas U compiler/pdecvar.pas U compiler/dbgstabs.pas U compiler/options.pas U packages/fcl-fpcunit/src/testutils.pp git-svn-id: trunk@16180 -
83 lines
1.5 KiB
ObjectPascal
83 lines
1.5 KiB
ObjectPascal
{ %opt=-gh }
|
|
|
|
program aIntfTest;
|
|
|
|
{$ifdef fpc}
|
|
{$mode delphi}
|
|
{$endif}
|
|
{$APPTYPE CONSOLE}
|
|
uses
|
|
SysUtils, Classes;
|
|
|
|
|
|
type
|
|
IMyIntf = interface
|
|
['{34326401-7B67-40FF-8E92-4587F65C8E24}']
|
|
function GetOwner: IMyIntf;
|
|
procedure Poing;
|
|
end;
|
|
|
|
type
|
|
TMYClass = clasS(TinterfacedObject, IMyIntf)
|
|
fRef: Integer;
|
|
public
|
|
function GetOwner: IMyIntf;
|
|
function QueryInterface(constref IID: TGUID; out Obj): HRESULT; {$IFNDEF WINDOWS}cdecl{$ELSE}stdcall{$ENDIF};
|
|
function _AddRef: Integer; {$IFNDEF WINDOWS}cdecl{$ELSE}stdcall{$ENDIF};
|
|
function _Release: Integer; {$IFNDEF WINDOWS}cdecl{$ELSE}stdcall{$ENDIF};
|
|
procedure Poing;
|
|
end;
|
|
|
|
{ TMYClass }
|
|
|
|
function TMYClass._AddRef: Integer;
|
|
begin
|
|
inc(fRef);
|
|
result := fRef;
|
|
Writeln('AddRef:'+inttostr(result));
|
|
end;
|
|
|
|
function TMYClass._Release: Integer;
|
|
begin
|
|
Dec(fRef);
|
|
result := FRef;
|
|
Writeln('Release:'+inttostr(result));
|
|
if result = 0 then Free;
|
|
end;
|
|
|
|
function TMYClass.GetOwner: IMyIntf;
|
|
begin
|
|
Writeln('GetOwner1');
|
|
result := nil;
|
|
Writeln('GetOwner2');
|
|
end;
|
|
|
|
function TMYClass.QueryInterface(constref IID: TGUID; out Obj): HRESULT;
|
|
begin
|
|
if GetInterface(IID, Obj) then
|
|
result := S_OK else result := -1;
|
|
end;
|
|
|
|
var
|
|
r: IMyIntf;
|
|
|
|
procedure Test(x: IMyIntf);
|
|
begin
|
|
if x <> nil then x.Poing;
|
|
x := x.GetOwner;
|
|
if x <> nil then x.Poing;
|
|
end;
|
|
|
|
procedure TMYClass.Poing;
|
|
begin
|
|
writeln('poing');
|
|
end;
|
|
|
|
begin
|
|
HaltOnNotReleased := true;
|
|
r := TMYClass.Create;
|
|
Test(r);
|
|
Writeln('nil');
|
|
r := nil;
|
|
end.
|