Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
#INCLUDE <Include\Windows.inc>
|
||||
ShowWindow(ME, SW_MAXIMIZE)
|
||||
BEGIN EVENTS
|
||||
END EVENTS
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
#APPTYPE CONSOLE
|
||||
#INCLUDE <Include\Windows.inc>
|
||||
|
||||
TYPE RECT
|
||||
%Left
|
||||
%Top
|
||||
%Right
|
||||
%Bottom
|
||||
END TYPE
|
||||
|
||||
DIM rc AS RECT
|
||||
SystemParametersInfo(SPI_GETWORKAREA, 0, @rc, 0)
|
||||
PRINT "width = ", rc.Right - rc.Left, ", height = ", rc.Bottom - rc.Top
|
||||
|
||||
PAUSE
|
||||
Loading…
Add table
Add a link
Reference in a new issue