Posted January 29, 20232 yr I wanna write a plugin in which DbgXrefGet is used, but it didn't work. Below is my code: XREF_INFO xref_info; DbgXrefGet(eip, &xref_info); for (int i = 0; i < xref_info.refcount; i++) { _plugin_logprintf("XREF Address: %d\n", xref_info.references[i].addr); } and the xref_info.refcount equals to 0 all the time
March 1, 20232 yr Author finally, I know the answer. The DbgXrefGet only works after the "analxrefs" command executed.
Create an account or sign in to comment