2012-03-17 10:50:10 +00:00
|
|
|
type
|
|
|
|
|
|
|
|
nsIServiceManager = interface(nsISupports)
|
|
|
|
['{8bb35ed9-e332-462d-9155-4a002ab5c958}']
|
|
|
|
procedure getService(constref aClass: TGuid; constref aIID: TGuid; out result); safecall;
|
2012-03-19 14:43:54 +00:00
|
|
|
procedure getServiceByContractID(aContractID: PAnsiChar; constref aIID: TGuid; out result); safecall;
|
|
|
|
function isServiceInstantiated(constref aClass: TGuid; constref aIID: TGuid) : longbool; safecall;
|
|
|
|
function isServiceInstantiatedByContractID(aContractID: PAnsiChar; constref aIID: TGuid) : longbool; safecall;
|
2012-03-17 10:50:10 +00:00
|
|
|
|
|
|
|
end;
|
|
|
|
|