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

Method stdcall_calling_convention

python/platform.py:399–406  ·  view source on GitHub ↗

CallingConvention object for the stdcall calling convention

(self)

Source from the content-addressed store, hash-verified

397
398 @property
399 def stdcall_calling_convention(self):
400 """
401 CallingConvention object for the stdcall calling convention
402 """
403 result = core.BNGetPlatformStdcallCallingConvention(self.handle)
404 if result is None:
405 return None
406 return callingconvention.CallingConvention(handle=result)
407
408 @stdcall_calling_convention.setter
409 def stdcall_calling_convention(self, value):

Callers

nothing calls this directly

Calls 1

CallingConventionMethod · 0.80

Tested by

no test coverage detected