You've already forked lazarus-ccr
28 lines
1.0 KiB
PHP
28 lines
1.0 KiB
PHP
![]() |
type
|
||
|
|
||
|
nsIDOMScreen = interface(nsISupports)
|
||
|
['{77947960-b4af-11d2-bd93-00805f8ae3f4}']
|
||
|
function Gettop(): idllong; safecall;
|
||
|
property top : idllong read Gettop;
|
||
|
function Getleft(): idllong; safecall;
|
||
|
property left : idllong read Getleft;
|
||
|
function Getwidth(): idllong; safecall;
|
||
|
property width : idllong read Getwidth;
|
||
|
function Getheight(): idllong; safecall;
|
||
|
property height : idllong read Getheight;
|
||
|
function GetpixelDepth(): idllong; safecall;
|
||
|
property pixelDepth : idllong read GetpixelDepth;
|
||
|
function GetcolorDepth(): idllong; safecall;
|
||
|
property colorDepth : idllong read GetcolorDepth;
|
||
|
function GetavailWidth(): idllong; safecall;
|
||
|
property availWidth : idllong read GetavailWidth;
|
||
|
function GetavailHeight(): idllong; safecall;
|
||
|
property availHeight : idllong read GetavailHeight;
|
||
|
function GetavailLeft(): idllong; safecall;
|
||
|
property availLeft : idllong read GetavailLeft;
|
||
|
function GetavailTop(): idllong; safecall;
|
||
|
property availTop : idllong read GetavailTop;
|
||
|
|
||
|
end;
|
||
|
|