Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:ibm:prcp:vio:getbuf [2016/02/04 09:35] – valerius | en:ibm:prcp:vio:getbuf [2016/09/14 10:59] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== VioGetBuf ==== | ==== VioGetBuf ==== | ||
+ | |||
+ | **Bindings**: | ||
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 | ||
+ | |||
+ | PULONG | ||
+ | PUSHORT | ||
+ | HVIO | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code masm> | ||
+ | EXTRN VioGetBuf: | ||
+ | INCL_VIO | ||
+ | |||
+ | PUSH@ DWORD | ||
+ | PUSH@ WORD Length | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | |||
+ | </ | ||