CallingConvention object for the cdecl calling convention
(self)
| 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): |
nothing calls this directly
no test coverage detected