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
22 lines
615 B
PHP
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;
|
|
|