Jump to content

ACQUIREFB: Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
 
(5 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 {
  ULONG fAFBFlags; /* Flag indicating whether bank switching is required. */
  ULONG ulBankNumber; /* Bank number to switch to. */
  RECTL rctlXRegion; /* Rectangle of cursor exclude region. */
} ACQUIREFB;
typedef ACQUIREFB *PACQUIREFB;
==Fields==
; fAFBFlags : fAFBFlags (ULONG)
Flag indicating whether bank switching is required.
This flag has the following value:
* AFB_SWITCH 1
; ulBankNumber : ulBankNumber (ULONG)
Bank number to switch to.
; rctlXRegion : rctlXRegion (RECTL)
Rectangle of cursor exclude region.


==Type==
==Type==
[[ULONG]] fAFBFlags;
ULONG ulBankNumber;
RECT rctlXRegion;


  ULONG fAFBFlags;
==C Declaration Method==
  ULONG ulBankNumber;
typedef struct
  RECTL rctlXRegion;


==C Declaration Method==
==Fields==
typedef
;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.


[[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.