INT10_BIOS_ARGUMENTS structure (video.h)
The INT10_BIOS_ARGUMENTS structure is used to support full-screen MS-DOS application INT10 calls. It contains nine of the high-end x86 microprocessor registers.
Syntax
typedef struct _INT10_BIOS_ARGUMENTS {
ULONG Eax;
ULONG Ebx;
ULONG Ecx;
ULONG Edx;
ULONG Esi;
ULONG Edi;
ULONG Ebp;
USHORT SegDs;
USHORT SegEs;
} INT10_BIOS_ARGUMENTS, *PINT10_BIOS_ARGUMENTS;
Members
Eax
Ebx
Ecx
Edx
Esi
Edi
Ebp
Are seven of the x86 microprocessor registers.
SegDs
SegEs
Are two of the x86 microprocessor segment registers.
Remarks
The first seven members of the INT10_BIOS_ARGUMENTS structure are identical to those of the VIDEO_x86_BIOS_ARGUMENTS structure.
Requirements
Requirement | Value |
---|---|
Header | video.h (include Video.h) |