You've already forked lazarus-ccr
* 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
12 lines
327 B
PHP
12 lines
327 B
PHP
type
|
|
|
|
nsIDOMDOMStringList = interface(nsISupports)
|
|
['{0bbae65c-1dde-11d9-8c46-000a95dc234c}']
|
|
procedure item(index: idlulong; result_: DOMString); safecall;
|
|
function Getlength(): idlulong; safecall;
|
|
property length : idlulong read Getlength;
|
|
function contains(str: DOMString) : longbool; safecall;
|
|
|
|
end;
|
|
|