| 1180 | |
| 1181 | |
| 1182 | void Function::SetCallingConvention(const Confidence<Ref<CallingConvention>>& convention) |
| 1183 | { |
| 1184 | BNCallingConventionWithConfidence cc; |
| 1185 | cc.convention = convention ? convention->GetObject() : nullptr; |
| 1186 | cc.confidence = convention.GetConfidence(); |
| 1187 | BNSetUserFunctionCallingConvention(m_object, &cc); |
| 1188 | } |
| 1189 | |
| 1190 | |
| 1191 | void Function::SetParameterVariables(const Confidence<vector<Variable>>& vars) |
no test coverage detected