docs/common.dox
.docs/mainpage_sdk.dox
Use \ref app_event_loop() to do awesome shit.
will create a clickable link to the documentation of app_event_loop. Don't forget to add the () parens if the symbol is a function! Using angle brackets like doesn't seem to work reliably, nor does the automatic detection of symbols.
@internal
to indicate that a piece of documentation is internal and should not be included in the public SDK documentation. You can add the @internal halfway, so that the first part of your docstrings will be included in the public SDK documentation, and the part after the @internal directive will also get included in our internal docs.@param param_name Description of param
to document a function parameter.@return Description of return value
to document the return value of a function.INPUT
in the Doxyfile-SDK configuration file.\htmlinclude my_ref.html
to include that link in the docs. This extra level of indirection will make it easy to relocate external pages later on.