| 213 | |
| 214 | |
| 215 | void CallingConvention::GetIncomingFlagValueCallback( |
| 216 | void* ctxt, uint32_t reg, BNFunction* func, BNRegisterValue* result) |
| 217 | { |
| 218 | CallbackRef<CallingConvention> cc(ctxt); |
| 219 | Ref<Function> funcObj; |
| 220 | if (func) |
| 221 | funcObj = new Function(BNNewFunctionReference(func)); |
| 222 | *result = cc->GetIncomingFlagValue(reg, funcObj).ToAPIObject(); |
| 223 | } |
| 224 | |
| 225 | |
| 226 | void CallingConvention::GetIncomingVariableForParameterVariableCallback( |
nothing calls this directly
no test coverage detected