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