SI Macro

获取 buf 里的 symbol 

cbuf = BufListCount()
msg(cbuf)
ibuf = 0
while (ibuf < cbuf)
{
    hbuf = BufListItem(ibuf)
    isymMax = GetBufSymCount(hbuf)
    msg(isymMax)
    isym = 0
    while (isym < isymMax)
    {
        symname = GetBufSymLocation(hbuf, isym)
        msg(symname)
        isym = isym + 1
    }
    ibuf = ibuf + 1
}

  

原文地址:https://www.cnblogs.com/fish7/p/6672157.html