MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / cdecl_calling_convention

Method cdecl_calling_convention

python/platform.py:382–389  ·  view source on GitHub ↗

CallingConvention object for the cdecl calling convention

(self)

Source from the content-addressed store, hash-verified

380
381 @property
382 def cdecl_calling_convention(self):
383 """
384 CallingConvention object for the cdecl calling convention
385 """
386 result = core.BNGetPlatformCdeclCallingConvention(self.handle)
387 if result is None:
388 return None
389 return callingconvention.CallingConvention(handle=result)
390
391 @cdecl_calling_convention.setter
392 def cdecl_calling_convention(self, value):

Callers

nothing calls this directly

Calls 1

CallingConventionMethod · 0.80

Tested by

no test coverage detected