5

I found a particularly important function using IDA Pro. However, the source is very large and I'm sure I'll lose track of it soon.

Is there a way to "flag" the function as important, color code it, or something similar?

samoz
  • 56,849
  • 55
  • 141
  • 195

2 Answers2

9

You can use:

  1. edit the function and make it public
  2. edit the function and color it
  3. use markers (alt+m / ctrl+m)
  4. give it a special prefix

I usually use 1 and 4

Igor Skochinsky
  • 24,629
  • 2
  • 72
  • 109
Elias Bachaalany
  • 1,180
  • 2
  • 13
  • 27
3
  1. Rename the function and give it a prefix, like "z_", and then you can find this function easily by sorting the function list by name.
thelONE
  • 31
  • 2