idaapi.BasicBlock
返回的IDA Pro对象idaapi.FlowChart()
可以是以下类型(参见gdl.hpp
SDK 源代码):
// flow chart block types
enum fc_block_type_t
{
fcb_normal, // normal block
fcb_indjump, // block ends with indirect jump
fcb_ret, // return block
fcb_cndret, // conditional return block
fcb_noret, // noreturn block
fcb_enoret, // external noreturn block (does not belong to the function)
fcb_extern, // external normal block
fcb_error, // block passes execution past the function end
};
我能够找到所有类型的示例,除了fcb_cndret
. 有什么作用
条件返回块
意思是?有人可以举个例子吗?