| 306 | |
| 307 | |
| 308 | Ref<CallingConvention> Platform::GetDefaultCallingConvention() const |
| 309 | { |
| 310 | BNCallingConvention* cc = BNGetPlatformDefaultCallingConvention(m_object); |
| 311 | if (!cc) |
| 312 | return nullptr; |
| 313 | return new CoreCallingConvention(cc); |
| 314 | } |
| 315 | |
| 316 | |
| 317 | Ref<CallingConvention> Platform::GetCdeclCallingConvention() const |
no outgoing calls
no test coverage detected