X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=HACKING;h=82176e14c216b295d0e7cc46da250ce21ec410bb;hp=dc4d53d45b37592eda9d750e8e585156d5e9fcf3;hb=3abc83b996547a69bad906ec748f30874aae4796;hpb=31e615a50b34f67bdf5562ad887415b2ec8796c8 diff --git a/HACKING b/HACKING index dc4d53d..82176e1 100644 --- a/HACKING +++ b/HACKING @@ -90,6 +90,22 @@ Doxygen /** @endcond */, so that Doxygen doesn't include them in the output. Variables that are "static" don't need to be marked like this. + - Mark all public API functions (SRD_API) with a @since tag which indicates + in which release the respective function was added. If the function has + existed before, but its API changed later, document this as well. + + Non-public functions (static ones, and those marked SRD_PRIV) don't need + to have @since markers. + + The @since tag should be the last one, i.e. it should come after @param, + @return, @see, and so on. + + Examples: + + @since 0.1.0 + + @since 0.1.1 (but the API changed in 0.2.0) + Protocol decoder guidelines ---------------------------