mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
17 lines
455 B
C++
17 lines
455 B
C++
//<inline(py_frame)>
|
|
|
|
//-------------------------------------------------------------------------
|
|
inline bool is_funcarg_off(const func_t *pfn, uval_t frameoff)
|
|
{
|
|
processor_t &ph = PH;
|
|
return ph.is_funcarg_off(pfn, frameoff);
|
|
}
|
|
|
|
//-------------------------------------------------------------------------
|
|
inline sval_t lvar_off(const func_t *pfn, uval_t frameoff)
|
|
{
|
|
processor_t &ph = PH;
|
|
return ph.lvar_off(pfn, frameoff);
|
|
}
|
|
//</inline(py_frame)>
|