Up

_GETdesktopSize

Retrieve the desktop size

Prototype :

fun [] [I I]

Return : [I I] the size or nil if error

See also :

_GETscreenSize

Example :

fun main ()=
	_showconsole;
	let _GETdesktopSize -> [w h] in
	(
	_fooId w;	// 1200
	_fooId h	// 976
	);
	0;;