Files
lazarus-ccr/components/geckoport/version2/gecko10/nsiservicemanager.inc
loesje_ 9c2b80b5c4 * Re-generated .inc files with new version from the idlparser.
* Some string-types are now not returned as function result but as parameter. Solves several string issues.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2357 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2012-03-19 14:43:54 +00:00

12 lines
523 B
PHP

type
nsIServiceManager = interface(nsISupports)
['{8bb35ed9-e332-462d-9155-4a002ab5c958}']
procedure getService(constref aClass: TGuid; constref aIID: TGuid; out result); safecall;
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;
end;