Jump to content

ACQUIREFB: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
mNo edit summary
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Structure describing action to take when acquiring the frame buffer.
Structure describing action to take when acquiring the frame buffer.


  typedef struct _ACQUIREFB {
==Type==
  ULONG fAFBFlags; /* Flag indicating whether bank switching is required. */
  [[ULONG]] fAFBFlags;
  ULONG ulBankNumber; /* Bank number to switch to. */
ULONG ulBankNumber;
  RECTL rctlXRegion; /* Rectangle of cursor exclude region. */
RECT rctlXRegion;
} ACQUIREFB;
typedef ACQUIREFB *PACQUIREFB;


; fAFBFlags : fAFBFlags (ULONG)
==C Declaration Method==
Flag indicating whether bank switching is required.
typedef struct


This flag has the following value:
==Fields==
* AFB_SWITCH 1
;fAFBFlags (ULONG):Flag indicating whether bank switching is required.
 
:This flag has the following value: AFB_SWITCH 1
; ulBankNumber : ulBankNumber (ULONG)
;ulBankNumber (ULONG):Bank number to switch to.
Bank number to switch to.
;rctlXRegion ([[RECTL]]):Rectangle of cursor exclude region.
 
; rctlXRegion : rctlXRegion (RECTL)
Rectangle of cursor exclude region.


[[Category:Data type]]
[[Category:Data type]]

Latest revision as of 16:39, 8 February 2020

Structure describing action to take when acquiring the frame buffer.

Type

ULONG fAFBFlags;
ULONG ulBankNumber;
RECT rctlXRegion;

C Declaration Method

typedef struct

Fields

fAFBFlags (ULONG)
Flag indicating whether bank switching is required.
This flag has the following value: AFB_SWITCH 1
ulBankNumber (ULONG)
Bank number to switch to.
rctlXRegion (RECTL)
Rectangle of cursor exclude region.