- Brief description-provides a short description of the function.
- Prototype-shows the C prototype for the function.
- Arguments-provides detailed descriptions of the function arguments, and indicates which values are modified by the function. Parameters marked "in" are input-only, not modified by the function. Parameters marked "out" contain values modified by the function. Parameters marked "in/out" contain values that are both used by the function as input and modified by the function.
- Return Values-lists the possible return values and their meanings.
- Remarks-provides additional explanation about a function's parameters, effects, or usage.
- Example-provides a sample code segment showing the function's use.
- See Also-lists related functions and topics.