Jump to content

VRAMHWREQUESTIN

From EDM2
Revision as of 18:07, 8 February 2020 by Martini (talk | contribs) (Created page with "Input structure to GreEscape DEVESC_HWREQUEST. Used to acquire and deacquire hardware access. ==Example Code== <PRE> typedef struct _VRAMHWREQUESTIN { ULONG ulLen...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Input structure to GreEscape DEVESC_HWREQUEST. Used to acquire and deacquire hardware access.

Example Code

typedef struct _VRAMHWREQUESTIN {
  ULONG          ulLength;    /*  Length of VRAMHWREQUESTIN data structure, in bytes. */
  ULONG          ulHandle;    /*  Instance handle from register. */
  ULONG          ulID;        /*  Buffer ID for off-screen VRAM. */
  PACQUIREFB     pAcquireFB;  /*  Old DIVE data structure. */
  ULONG          ulFlags;     /*  Flag indicating type of request. */
} VRAMHWREQUESTIN;

typedef VRAMHWREQUESTIN *PVRAMHWREQUESTIN;