INT10_BIOS_ARGUMENTS - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// video.h

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;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-video-_int10_bios_arguments)

_INT10_BIOS_ARGUMENTS structure

Description

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.

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.

See also

Int10CallBios

VIDEO_x86_BIOS_ARGUMENTS