From 290df8eef95d0d7f2f0e99c91b104b4b02f2bd22 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Tue, 2 Feb 2016 23:58:19 -0500 Subject: Detect system calls that do not return --- binaryninjaapi.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'binaryninjaapi.h') diff --git a/binaryninjaapi.h b/binaryninjaapi.h index 42a29388..32273db8 100644 --- a/binaryninjaapi.h +++ b/binaryninjaapi.h @@ -1650,12 +1650,14 @@ namespace BinaryNinja Ref GetStdcallCallingConvention() const; Ref GetFastcallCallingConvention() const; std::vector> GetCallingConventions() const; + Ref GetSystemCallConvention() const; void RegisterCallingConvention(CallingConvention* cc); void RegisterDefaultCallingConvention(CallingConvention* cc); void RegisterCdeclCallingConvention(CallingConvention* cc); void RegisterStdcallCallingConvention(CallingConvention* cc); void RegisterFastcallCallingConvention(CallingConvention* cc); + void SetSystemCallConvention(CallingConvention* cc); Ref GetRelatedPlatform(Architecture* arch); void AddRelatedPlatform(Architecture* arch, Platform* platform); -- cgit v1.3.1