>Hex-Rays IDA Pro Page

Help index | Search

AutoMark

// Plan to perform an action in the future.
// This function will put your request to a special autoanalysis queue.
// Later IDA will retrieve the request from the queue and process
// it. There are several autoanalysis queue types. IDA will process all
// queries from the first queue and then switch to the second queue, etc.

void AutoMark (long ea,long queuetype); // plan address to analyze void AutoMark2 (long start,long end,long queuetype); // plan range of addresses

#define AU_UNK 10 // make unknown #define AU_CODE 20 // convert to instruction #define AU_PROC 30 // make function #define AU_USED 40 // reanalyze #define AU_LIBF 60 // apply a flirt signature (the current signature!) #define AU_FINAL 200 // coagulate unexplored items

Index | Previous topic | Next topic