VDS Display Settings DLL
v1.02
January 25th, 2006
How To Start
Command/Function definition for VDS 5:
#define COMMAND,SETDISPLAY
#define FUNCTION,SETDISPLAY
DLL usage for VDS 3.5+:
external vdsdisplaysettings.dll
Command Usage
Display Bit-Depth:
setdisplay color,<color bit-depth>
Color bit-depth can be 4, 8, 16 or 32.
Display Resolution:
setdisplay res,<width
pixels>,<height pixels>
Width, Height can be any of these, depending on what your display
adapter can use:
640,480
800,600
960,600
1024,768
1088,612
1152,864
1280,720
1280,768
1280,800
1280,960
1280,1024
Up to 1600,1200 if your adapter handles higher resolutions.
Function Usage
Return
Display Bit-Depth:
%%<variable> = setdisplay(getcolor)
Color bit-depth can be returned as 4, 8, 16 or 32.
Syntax Example
info Bit-Depth Is: @setdisplay(getcolor)
#define
command,setdisplay
setdisplay color,16
setdisplay res,800,600
info Bit-Depth
Changed To: @setdisplay(getcolor)
info Resolution
Changed To: 800x600
exit