Skip to content

Making declarations

Paul Lynn edited this page Dec 26, 2021 · 8 revisions

Declaration is a single source of information about things included into your library.

How to make declarations?

You should enclose your declarations in /* */ code block. Ideal declaration looks like this:

/* @function function_name
 * @return return_type
 * @argument argument1_type
 */

All declarations consists of units, which is some keyword (like @member) with a list of values separated by space. The first unit is always define declaration type.

Which types are supported?

Following declaration types are supported: functions, structs, enums, flags, variables, typedefs.

Clone this wiki locally