Up |
_GETdesktopSize
Retrieve the desktop size
Prototype :
fun [] [I I]
Return : [I I] the size or nil if error
See also :
Example :
fun main ()=
_showconsole;
let _GETdesktopSize -> [w h] in
(
_fooId w; // 1200
_fooId h // 976
);
0;;
Up |
Retrieve the desktop size
fun [] [I I]
Return : [I I] the size or nil if error
fun main ()=
_showconsole;
let _GETdesktopSize -> [w h] in
(
_fooId w; // 1200
_fooId h // 976
);
0;;