Doxygen style
This guide introduces a consistent style for documenting HypedDbg source code using Doxygen
/**
* Brief summary.
*
* Detailed description. More detail.
* @see Some reference
*
* @param <name> Parameter description.
* @return Return value description.
*/Example:
/**
* @brief Power function in order to computer address for MSR bitmaps
*
* @param Base Base for power function
* @param Exp Exponent for power function
* @return int Returns the result of power function
*/
int
MathPower(int Base, int Exp)
{
...
}Doxygen Tags
Last updated