2012-03-17 10:50:10 +00:00
|
|
|
type
|
|
|
|
|
|
|
|
nsIDOMPlugin = interface(nsISupports)
|
|
|
|
['{ff69a292-c74d-4ef5-9d0f-86112fff2d5b}']
|
2012-03-19 14:43:54 +00:00
|
|
|
procedure Getdescription( result_: DOMString); safecall;
|
|
|
|
procedure Getfilename( result_: DOMString); safecall;
|
|
|
|
procedure Getversion( result_: DOMString); safecall;
|
|
|
|
procedure Getname( result_: DOMString); safecall;
|
2012-03-17 10:50:10 +00:00
|
|
|
function Getlength(): idlulong; safecall;
|
|
|
|
property length : idlulong read Getlength;
|
|
|
|
function item(index: idlulong) : nsIDOMMimeType; safecall;
|
|
|
|
function namedItem(aname: DOMString) : nsIDOMMimeType; safecall;
|
|
|
|
|
|
|
|
end;
|
|
|
|
|