CallingConvention object for the fastcall calling convention
(self)
| 414 | |
| 415 | @property |
| 416 | def fastcall_calling_convention(self): |
| 417 | """ |
| 418 | CallingConvention object for the fastcall calling convention |
| 419 | """ |
| 420 | result = core.BNGetPlatformFastcallCallingConvention(self.handle) |
| 421 | if result is None: |
| 422 | return None |
| 423 | return callingconvention.CallingConvention(handle=result) |
| 424 | |
| 425 | @fastcall_calling_convention.setter |
| 426 | def fastcall_calling_convention(self, value): |
nothing calls this directly
no test coverage detected