en:ibm:prcp:vio:getstate

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:ibm:prcp:vio:getstate [2016/09/14 10:15] – created valeriusen:ibm:prcp:vio:getstate [2016/09/14 10:41] (current) valerius
Line 1: Line 1:
 ==== VioGetState ==== ==== VioGetState ====
  
-**Bindings**: C, MASM +**Bindings**: [[en:ibm:prcp:vio:getstate#bindings|C]][[en:ibm:prcp:vio:getstate#MASM bindings|MASM]] 
  
 This call returns the current settings of the palette registers, overscan (border) color, blink/background intensity switch, color registers, underline location, or target [[en:ibm:prcp:vio:setmode|VioSetMode]] display configuration.  This call returns the current settings of the palette registers, overscan (border) color, blink/background intensity switch, color registers, underline location, or target [[en:ibm:prcp:vio:setmode|VioSetMode]] display configuration. 
Line 145: Line 145:
  
 Request type = 6, Get Target [[en:ibm:prcp:vio:setmode|VioSetMode]] Display Configuration, and request type = 5, Get Underline Location, are not supported in the family API.  Request type = 6, Get Target [[en:ibm:prcp:vio:setmode|VioSetMode]] Display Configuration, and request type = 5, Get Underline Location, are not supported in the family API. 
 +
 +=== C bindings ===
 +
 +<code c>
 +typedef struct _VIOPALSTATE {
 +  USHORT  cb;                   /* Length of this structure in bytes */
 +  USHORT  type;                 /* Request type=0 get palette registers */
 +  USHORT  iFirst;               /* First palette register to return */
 +  USHORT  acolor[1];            /* Color value palette register */
 +  }VIOPALSTATE;
 +typedef VIOPALSTATE far *PVIOPALSTATE;
 +
 +typedef struct _VIOOVERSCAN {
 +  USHORT  cb;                   /* Length of this structure */
 +  USHORT  type;                 /* Request type=1 get overscan
 +                                    (border) color */
 +  USHORT  color;                /* Color value */
 +  }VIOOVERSCAN;
 +typedef VIOOVERSCAN far *PVIOOVERSCAN;
 +
 +typedef struct _VIOINTENSITY {
 +  USHORT  cb;                   /* Length of this structure */
 +  USHORT  type;                 /* Request type=2 get blink/background
 +                                    intensity switch */
 +  USHORT  fs;                   /* Value of blink/background switch */
 +  }VIOINTENSITY;
 +typedef VIOINTENSITY far *PVIOINTENSITY;
 +
 +typedef struct _VIOCOLORREG {   /* viocreg */
 +  USHORT  cb;
 +  USHORT  type;
 +  USHORT  firstcolorreg;
 +  USHORT  numcolorregs;
 +  PCH     colorregaddr;
 +  }VIOCOLORREG;
 +typedef VIOCOLORREG far *PVIOCOLORREG;
 +
 +typedef struct _VIOSETULINELOC { /* viouline */
 +  USHORT  cb;
 +  USHORT  type;
 +  USHORT  scanline;
 +  }VIOSETULINELOC;
 +typedef VIOSETULINELOC far *PVIOSETULINELOC;
 +
 +typedef struct _VIOSETTARGET {  /* viosett */
 +  USHORT  cb;
 +  USHORT  type;
 +  USHORT  defaultalgorithm;
 +  }VIOSETTARGET;
 +typedef VIOSETTARGET far *PVIOSETTARGET;
 +
 +#define INCL_VIO
 +
 +USHORT  rc = VioGetState(RequestBlock, VioHandle);
 +
 +PVOID            RequestBlock;  /* Request block */
 +HVIO             VioHandle;     /* Vio handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings: ===
 +
 +<code asm>
 +
 +VIOPALSTATE struc
 +  viopal_cb               dw ? ;Length of this structure in bytes
 +  viopal_type             dw ? ;Request type=0 get palette registers
 +  viopal_iFirst           dw ? ;First palette register to return
 +  viopal_acolor  dw 1  dup (?) ;Color value palette register
 +VIOPALSTATE ends
 +
 +VIOOVERSCAN struc
 +  vioos_cb                dw ? ;Length of this structure
 +  vioos_type              dw ? ;Request type=1 get overscan (border) color
 +  vioos_color             dw ? ;Color value
 +VIOOVERSCAN ends
 +
 +VIOINTENSITY struc
 +  vioint_cb               dw ? ;Length of this structure
 +  vioint_type             dw ? ;Request type=2 get blink/background
 +                              ; intensity switch
 +  vioint_fs               dw ? ;Value of blink/background switch
 +VIOINTENSITY ends
 +
 +VIOCOLORREG struc
 +  viocreg_cb              dw ? ;
 +  viocreg_type            dw ? ;
 +  viocreg_firstcolorreg   dw ? ;
 +  viocreg_numcolorregs    dw ? ;
 +  viocreg_colorregaddr    dd ? ;
 +VIOCOLORREG ends
 +
 +VIOSETULINELOC struc
 +  viouline_cb             dw ? ;
 +  viouline_type           dw ? ;
 +  viouline_scanline       dw ? ;
 +VIOSETULINELOC ends
 +
 +VIOSETTARGET struc
 +  viosett_cb               dw ? ;
 +  viosett_type             dw ? ;
 +  viosett_defaultalgorithm dw ? ;
 +VIOSETTARGET    ends
 +
 +EXTRN  VioGetState:FAR
 +INCL_VIO            EQU 1
 +
 +PUSH@  OTHER   RequestBlock     ;Request block
 +PUSH   WORD    VioHandle        ;Vio handle
 +CALL   VioGetState
 +
 +Returns WORD
 +</code>
 +