| 202 | |
| 203 | |
| 204 | void CallingConvention::GetIncomingRegisterValueCallback( |
| 205 | void* ctxt, uint32_t reg, BNFunction* func, BNRegisterValue* result) |
| 206 | { |
| 207 | CallbackRef<CallingConvention> cc(ctxt); |
| 208 | Ref<Function> funcObj; |
| 209 | if (func) |
| 210 | funcObj = new Function(BNNewFunctionReference(func)); |
| 211 | *result = cc->GetIncomingRegisterValue(reg, funcObj).ToAPIObject(); |
| 212 | } |
| 213 | |
| 214 | |
| 215 | void CallingConvention::GetIncomingFlagValueCallback( |
nothing calls this directly
no test coverage detected