[C++] 纯文本查看 复制代码 if (CurEIP == (base + index))
{
t_text tText;
tText.m_dw64Address = CurEIP;
tText.m_strText = "(Initial CPU selection)";
g_strings.push_back(tText);
mark.index = dataindex;
mark.size = 1;
mark.type = 0;
mark.addr = CurEIP;
mark.iscureip = 1; // Is Current EIP
Addsorteddata(&(g_ustrreftbl.data), &mark);
g_CurEIP_Item_Index = dataindex;
++dataindex;
}
|