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
15 lines
483 B
PHP
15 lines
483 B
PHP
type
|
|
|
|
nsIDOMStorage = interface(nsISupports)
|
|
['{43E5EDAD-1E02-42c4-9D99-C3D9DEE22A20}']
|
|
function Getlength(): idlulong; safecall;
|
|
property length : idlulong read Getlength;
|
|
procedure key(index: idlulong; result_: DOMString); safecall;
|
|
procedure getItem(akey: DOMString; result_: DOMString); safecall;
|
|
procedure setItem(akey: DOMString; data: DOMString); safecall;
|
|
procedure removeItem(akey: DOMString); safecall;
|
|
procedure clear(); safecall;
|
|
|
|
end;
|
|
|