Dean Zobec wrote:
I've talked with some friends of mine about the use of Interface base classes
without reference counting in Delphi
like this
type
TNoRefCount = class(TObject, IUnknown)
protected
function QueryInterface(const IID:TGUID; out Obj):HResult; stdcall;
function _AddRef: I
I've talked with some friends of mine about the use of Interface base classes
without reference counting in Delphi
like this
type
TNoRefCount = class(TObject, IUnknown)
protected
function QueryInterface(const IID:TGUID; out Obj):HResult; stdcall;
function _AddRef: Integer; stdcall;