Default calling convention. :getter: returns a CallingConvention object for the default calling convention. :setter: sets the default calling convention :type: CallingConvention
(self)
| 362 | |
| 363 | @property |
| 364 | def default_calling_convention(self): |
| 365 | """ |
| 366 | Default calling convention. |
| 367 | |
| 368 | :getter: returns a CallingConvention object for the default calling convention. |
| 369 | :setter: sets the default calling convention |
| 370 | :type: CallingConvention |
| 371 | """ |
| 372 | result = core.BNGetPlatformDefaultCallingConvention(self.handle) |
| 373 | if result is None: |
| 374 | return None |
| 375 | return callingconvention.CallingConvention(handle=result) |
| 376 | |
| 377 | @default_calling_convention.setter |
| 378 | def default_calling_convention(self, value): |
nothing calls this directly
no test coverage detected