Files
lazarus-ccr/components/geckoport/version2/gecko10/nsidomhistory.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

21 lines
817 B
PHP

type
nsIDOMHistory = interface(nsISupports)
['{d5a3006b-dd6b-4ba3-81be-6559f8889e60}']
function Getlength(): idllong; safecall;
property length : idllong read Getlength;
procedure Getcurrent( result_: DOMString); safecall;
procedure Getprevious( result_: DOMString); safecall;
procedure Getnext( result_: DOMString); safecall;
procedure back(); safecall;
procedure forward(); safecall;
procedure go(aDelta: idllong); safecall;
procedure item(index: idlulong; result_: DOMString); safecall;
procedure pushState(aData: nsIVariant; aTitle: DOMString; aURL: DOMString); safecall;
procedure replaceState(aData: nsIVariant; aTitle: DOMString; aURL: DOMString); safecall;
function Getstate(): nsIVariant; safecall;
property state : nsIVariant read Getstate;
end;