summaryrefslogtreecommitdiff
path: root/binaryninjacore.h
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2018-09-20 16:51:56 -0400
committerPeter LaFosse <peter@vector35.com>2018-09-20 16:51:56 -0400
commitdd9a865f2ebcb4dfbe462154114f495e49a16fe4 (patch)
tree9fffa7b1fa1c6b0f8c90dfad603fab7a07519852 /binaryninjacore.h
parentf48203de0acafb1d981d56c79d0edff921102065 (diff)
parent536908c5d4ba2f919765b41a050269669c800a75 (diff)
Merge branch 'dev' into test_relocation
Diffstat (limited to 'binaryninjacore.h')
-rw-r--r--binaryninjacore.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/binaryninjacore.h b/binaryninjacore.h
index 7279b212..c2e6943f 100644
--- a/binaryninjacore.h
+++ b/binaryninjacore.h
@@ -1544,6 +1544,7 @@ extern "C"
void (*freeObject)(void* ctxt);
uint32_t* (*getCallerSavedRegisters)(void* ctxt, size_t* count);
+ uint32_t* (*getCalleeSavedRegisters)(void* ctxt, size_t* count);
uint32_t* (*getIntegerArgumentRegisters)(void* ctxt, size_t* count);
uint32_t* (*getFloatArgumentRegisters)(void* ctxt, size_t* count);
void (*freeRegisterList)(void* ctxt, uint32_t* regs);
@@ -3320,6 +3321,7 @@ extern "C"
BINARYNINJACOREAPI BNArchitecture* BNGetCallingConventionArchitecture(BNCallingConvention* cc);
BINARYNINJACOREAPI char* BNGetCallingConventionName(BNCallingConvention* cc);
BINARYNINJACOREAPI uint32_t* BNGetCallerSavedRegisters(BNCallingConvention* cc, size_t* count);
+ BINARYNINJACOREAPI uint32_t* BNGetCalleeSavedRegisters(BNCallingConvention* cc, size_t* count);
BINARYNINJACOREAPI uint32_t* BNGetIntegerArgumentRegisters(BNCallingConvention* cc, size_t* count);
BINARYNINJACOREAPI uint32_t* BNGetFloatArgumentRegisters(BNCallingConvention* cc, size_t* count);