It appears not. I used the Go To Definition in VCE 2010, and it took me to the above SA. However, there's more. Here it is:
1 2 3 4 5 6 7 8 9 10
// This is before the code above.
enum SA( YesNoMaybe )
{
// Choose values that we can detect as invalid if they are or'd together
SA( No ) = 0x0fff0001,
SA( Maybe ) = 0x0fff0010,
SA( Yes ) = 0x0fff0100
};
typedefenum SA( YesNoMaybe ) SA( YesNoMaybe );
It is a macro - and if your sourceannotations header file is the same as mine - you will find it a
few lines earlier in the header file - mine looks like this: