Class ImageRuntimeFunctionEntries_ARM

java.lang.Object
ghidra.app.util.bin.format.pe.ImageRuntimeFunctionEntries_ARM
All Implemented Interfaces:
ImageRuntimeFunctionEntries

public class ImageRuntimeFunctionEntries_ARM extends Object implements ImageRuntimeFunctionEntries
 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;
 
See Also: