Blame include/ntapi/bits/i386/nt_thread_i386.h

dd89bb
#include <psxtypes/psxtypes.h>
dd89bb
dd89bb
typedef struct _nt_floating_save_area_i386 {
dd89bb
	uint32_t	uc_ctrl_word;		/* 0x000 */
dd89bb
	uint32_t	uc_status_word;		/* 0x004 */
dd89bb
	uint32_t	uc_tag_word;		/* 0x008 */
dd89bb
	uint32_t	uc_error_offset;	/* 0x00c */
dd89bb
	uint32_t	uc_error_selector;	/* 0x010 */
dd89bb
	uint32_t	uc_data_offset;		/* 0x014 */
dd89bb
	uint32_t	uc_data_selector;	/* 0x018 */
dd89bb
	unsigned char 	uc_reg_area[80];	/* 0x01c */
dd89bb
	uint32_t	uc_cr0_npx_state;	/* 0x06c */
dd89bb
} nt_floating_save_area_i386;
dd89bb
dd89bb
dd89bb
typedef struct _nt_thread_context_i386 {
dd89bb
	uint32_t	uc_context_flags;	/* 0x000 */
dd89bb
	uint32_t	uc_dr0;			/* 0x004 */
dd89bb
	uint32_t	uc_dr1;			/* 0x008 */
dd89bb
	uint32_t	uc_dr2;			/* 0x00c */
dd89bb
	uint32_t	uc_dr3;			/* 0x010 */
dd89bb
	uint32_t	uc_dr6;			/* 0x014 */
dd89bb
	uint32_t	uc_dr7;			/* 0x018 */
dd89bb
dd89bb
	nt_floating_save_area_i386
dd89bb
			uc_float_save;		/* 0x01c */
dd89bb
dd89bb
	uint32_t	uc_seg_gs; 		/* 0x08c */
dd89bb
	uint32_t	uc_seg_fs; 		/* 0x090 */
dd89bb
	uint32_t	uc_seg_es;		/* 0x094 */
dd89bb
	uint32_t	uc_seg_ds;		/* 0x098 */
dd89bb
	uint32_t	uc_edi;			/* 0x09c */
dd89bb
	uint32_t	uc_esi;			/* 0x0a0 */
dd89bb
	uint32_t	uc_ebx;			/* 0x0a4 */
dd89bb
	uint32_t	uc_edx;			/* 0x0a8 */
dd89bb
	uint32_t	uc_ecx;			/* 0x0ac */
dd89bb
	uint32_t	uc_eax;			/* 0x0b0 */
dd89bb
	uint32_t	uc_ebp;			/* 0x0b4 */
dd89bb
	uint32_t	uc_eip;			/* 0x0b8 */
dd89bb
	uint32_t	uc_seg_cs; 		/* 0x0bc */
dd89bb
	uint32_t	uc_eflags;		/* 0x0c0 */
dd89bb
	uint32_t	uc_esp;			/* 0x0c4 */
dd89bb
	uint32_t	uc_seg_ss;		/* 0x0c8 */
dd89bb
	unsigned char	uc_extended_regs[512]; /* 0x0cc */
dd89bb
} nt_thread_context_i386;