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
14 lines
457 B
PHP
14 lines
457 B
PHP
type
|
|
|
|
nsIDOMStorageObsolete = interface(nsISupports)
|
|
['{18013CF9-B104-49cf-9484-C2A7A845457E}']
|
|
function Getlength(): idlulong; safecall;
|
|
property length : idlulong read Getlength;
|
|
procedure key(index: idlulong; result_: DOMString); safecall;
|
|
function getItem(akey: DOMString) : nsIDOMStorageItem; safecall;
|
|
procedure setItem(akey: DOMString; data: DOMString); safecall;
|
|
procedure removeItem(akey: DOMString); safecall;
|
|
|
|
end;
|
|
|