Hi,
I am trying to write a macro that will expand a current capabilities of Doxygen comment style present in VS.
In cases like function definitions or declarations I actually simulate default vs. behavior, since it is perfect for my needs. However when it comes to enumerations, structures, classes, defines slick edit is not providing any support. May be in future versions it will.
While going through SlickC API and code examples in forum, I saw that there are quite always two steps that are performed while parsing a code:
1. Current or nearest context is obtained using tag_get_current_context() and tag_nearest_context() correspondingly. These are actually returns context ids.
2. tag information is obtained from different query APIs like tag_get_detail2()
I must admit that I am new to Slick-C and I feel that I miss a very basic understanding of a following topics:
1. what is a definition of a context, when I obtain a context id - what does it mean for me?
2. what is a definition of a tag? How it is relates to context?
Actually I tried to find information in manuals, but unsuccessfully. If I missed it, please don't hesitate just to point where to look, however a direct explanation will be great.
Regards,
Alex