Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
To annotate code in C, you include the SourceAnnotations.h file and then use the attributes to annotate function parameters or return values.
To annotate code in C
Add the #include <CodeAnalysis/SourceAnnotations.h> file to your project header file.
Next, use the attribute to annotate code.
Example
The following code shows how to annotate C code:
// MyCode.h
#include <CodeAnalysis/SourceAnnotations.h>
// MyCode.c
#include "MyCode.h"
void f ( [SA_Pre (Valid = SA_Yes)] int pWidth )
{
// code...
}
In C++, SA_ prefix is optional.