mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[PSDK] Add some missing ARM definitions
This commit is contained in:
parent
e91f201be2
commit
8043628d97
1 changed files with 53 additions and 1 deletions
|
@ -2095,7 +2095,59 @@ typedef struct _CONTEXT
|
||||||
DWORD Wcr[ARM_MAX_WATCHPOINTS];
|
DWORD Wcr[ARM_MAX_WATCHPOINTS];
|
||||||
|
|
||||||
DWORD Padding2[2];
|
DWORD Padding2[2];
|
||||||
} CONTEXT;
|
} CONTEXT, *PCONTEXT;
|
||||||
|
|
||||||
|
typedef struct _IMAGE_ARM_RUNTIME_FUNCTION_ENTRY
|
||||||
|
{
|
||||||
|
DWORD BeginAddress;
|
||||||
|
union
|
||||||
|
{
|
||||||
|
DWORD UnwindData;
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
DWORD Flag : 2;
|
||||||
|
DWORD FunctionLength : 11;
|
||||||
|
DWORD Ret : 2;
|
||||||
|
DWORD H : 1;
|
||||||
|
DWORD Reg : 3;
|
||||||
|
DWORD R : 1;
|
||||||
|
DWORD L : 1;
|
||||||
|
DWORD C : 1;
|
||||||
|
DWORD StackAdjust : 10;
|
||||||
|
} DUMMYSTRUCTNAME;
|
||||||
|
} DUMMYUNIONNAME;
|
||||||
|
} IMAGE_ARM_RUNTIME_FUNCTION_ENTRY, *PIMAGE_ARM_RUNTIME_FUNCTION_ENTRY;
|
||||||
|
typedef IMAGE_ARM_RUNTIME_FUNCTION_ENTRY RUNTIME_FUNCTION, *PRUNTIME_FUNCTION;
|
||||||
|
|
||||||
|
typedef struct _SCOPE_TABLE_ARM
|
||||||
|
{
|
||||||
|
DWORD Count;
|
||||||
|
struct
|
||||||
|
{
|
||||||
|
DWORD BeginAddress;
|
||||||
|
DWORD EndAddress;
|
||||||
|
DWORD HandlerAddress;
|
||||||
|
DWORD JumpTarget;
|
||||||
|
} ScopeRecord[1];
|
||||||
|
} SCOPE_TABLE_ARM, *PSCOPE_TABLE_ARM;
|
||||||
|
typedef SCOPE_TABLE_ARM SCOPE_TABLE, *PSCOPE_TABLE;
|
||||||
|
|
||||||
|
typedef struct _DISPATCHER_CONTEXT
|
||||||
|
{
|
||||||
|
DWORD ControlPc;
|
||||||
|
DWORD ImageBase;
|
||||||
|
PRUNTIME_FUNCTION FunctionEntry;
|
||||||
|
DWORD EstablisherFrame;
|
||||||
|
DWORD TargetPc;
|
||||||
|
PCONTEXT ContextRecord;
|
||||||
|
PEXCEPTION_ROUTINE LanguageHandler;
|
||||||
|
PVOID HandlerData;
|
||||||
|
struct _UNWIND_HISTORY_TABLE *HistoryTable;
|
||||||
|
DWORD ScopeIndex;
|
||||||
|
BOOLEAN ControlPcIsUnwound;
|
||||||
|
PBYTE NonVolatileRegisters;
|
||||||
|
DWORD Reserved;
|
||||||
|
} DISPATCHER_CONTEXT, *PDISPATCHER_CONTEXT;
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#error "undefined processor type"
|
#error "undefined processor type"
|
||||||
|
|
Loading…
Reference in a new issue