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

22 lines
615 B
PHP

type
nsDOMPerformanceNavigationType = idlushort;
type
nsIDOMPerformanceNavigation = interface(nsISupports)
['{a2132ad8-a841-4285-a140-338e8de6c2e0}']
function Gettype(): nsDOMPerformanceNavigationType; safecall;
property atype : nsDOMPerformanceNavigationType read Gettype;
function GetredirectCount(): idlushort; safecall;
property redirectCount : idlushort read GetredirectCount;
end;
const
nsIDOMPerformanceNavigation_TYPE_NAVIGATE=0;
nsIDOMPerformanceNavigation_TYPE_RELOAD=1;
nsIDOMPerformanceNavigation_TYPE_BACK_FORWARD=2;
nsIDOMPerformanceNavigation_TYPE_RESERVED=255;