能力值:
( LV4,RANK:50 )
|
-
-
2 楼
u can use "NextFunction"
|
能力值:
( LV13,RANK:240 )
|
-
-
3 楼
下面是我的实现,多谢 Bombs~~
for (StartAddr = NextFunction(0); StartAddr != BADADDR; StartAddr = NextFunction(StartAddr))
{
FuncName = Name(StartAddr); //获取函数名
EndAddr = GetFunctionAttr(StartAddr, FUNCATTR_END); //获取函数结束地址
Message("Function:%s, %08x-%08x\n", FuncName, StartAddr, EndAddr);
}
|
|
|