diff options
| author | Rusty Wagner <rusty@vector35.com> | 2017-08-17 22:53:10 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2017-08-17 22:53:10 -0400 |
| commit | e40b46fdf8b76acb5ca2d0a062b0b8ac2ca99a16 (patch) | |
| tree | 6f77f76307a8f08ee1e137aba2d3093e9f77c70c /binaryninjacore.h | |
| parent | 78d90c30df96364cdc8dde1954be7341531cfe07 (diff) | |
Work around limitations in ctypes
Diffstat (limited to 'binaryninjacore.h')
| -rw-r--r-- | binaryninjacore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h index b69d79f9..5c6619b2 100644 --- a/binaryninjacore.h +++ b/binaryninjacore.h @@ -1250,8 +1250,8 @@ extern "C" uint32_t (*getGlobalPointerRegister)(void* ctxt); uint32_t* (*getImplicitlyDefinedRegisters)(void* ctxt, size_t* count); - BNRegisterValue (*getIncomingRegisterValue)(void* ctxt, uint32_t reg, BNFunction* func); - BNRegisterValue (*getIncomingFlagValue)(void* ctxt, uint32_t flag, BNFunction* func); + void (*getIncomingRegisterValue)(void* ctxt, uint32_t reg, BNFunction* func, BNRegisterValue* result); + void (*getIncomingFlagValue)(void* ctxt, uint32_t flag, BNFunction* func, BNRegisterValue* result); }; struct BNVariableNameAndType |
