en:ibm:prcp:vio:getbuf

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
en:ibm:prcp:vio:getbuf [2016/02/04 09:35] valeriusen:ibm:prcp:vio:getbuf [2016/09/14 10:59] (current) valerius
Line 1: Line 1:
 ==== VioGetBuf ==== ==== VioGetBuf ====
 +
 +**Bindings**: [[getbuf#C bindings|C]], [[getbuf#MASM bindings|MASM]]
  
 This call returns the address of the logical video buffer (LVB).  This call returns the address of the logical video buffer (LVB). 
Line 37: Line 39:
  
 This function returns the address and length of the Advanced VIO presentation space. The presentation space may be used to directly manipulate displayed information.  This function returns the address and length of the Advanced VIO presentation space. The presentation space may be used to directly manipulate displayed information. 
 +
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_VIO
 +
 +USHORT  rc = VioGetBuf(LVBPtr, Length, VioHandle);
 +
 +PULONG           LVBPtr;        /* Points to LVB */
 +PUSHORT          Length;        /* Length of buffer */
 +HVIO             VioHandle;     /* Vio handle */
 +
 +USHORT           rc;            /* return code */
 +
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code masm>
 +EXTRN  VioGetBuf:FAR
 +INCL_VIO            EQU 1
 +
 +PUSH@  DWORD   LVBPtr        ;Points to LVB
 +PUSH@  WORD    Length        ;Length of buffer
 +PUSH   WORD    VioHandle     ;Vio handle
 +CALL   VioGetBuf
 +
 +Returns WORD
 +
 +</code>