VRAMHWREQUESTOUT: Difference between revisions
Appearance
Created page with "Output structure from GreEscape DEVESC_HWREQUEST. Contains information describing the state of VRAM at the time of the request. ==Example Code== <PRE> typedef struct _VRAMHW..." |
(No difference)
|
Latest revision as of 17:07, 8 February 2020
Output structure from GreEscape DEVESC_HWREQUEST. Contains information describing the state of VRAM at the time of the request.
Example Code
typedef struct _VRAMHWREQUESTOUT {
ULONG ulLength; /* Length of VRAMHWREQUESTOUT data structure, in bytes. */
ULONG ulFlags; /* Flag indicating status of memory allocation. */
POINTL ptlStart; /* Location of buffer in VRAM. */
PVOID psysMem; /* Pointer to globally shared system memory. */
ULONG ulScanLineBytes; /* Number of bytes per scanline. */
} VRAMHWREQUESTOUT;
typedef VRAMHWREQUESTOUT *PVRAMHWREQUESTOUT;