From: Uwe Hermann Date: Fri, 2 Nov 2012 18:05:53 +0000 (+0100) Subject: HACKING: Document enum setup. X-Git-Tag: dsupstream~591 X-Git-Url: http://sigrok.org/gitweb/?p=libsigrok.git;a=commitdiff_plain;h=f18297a5fd88f09a9e1a1330777f6db6dfe8999a HACKING: Document enum setup. --- diff --git a/HACKING b/HACKING index 9c422a32..a502a200 100644 --- a/HACKING +++ b/HACKING @@ -115,6 +115,18 @@ Random notes should end with "_all", e.g. "_remove_all", "_get_all", and so on. Use "_remove_all" in favor of "_clear" for consistency. + - All enums should generally use an explicit start number of 10000. + If there are multiple "categories" in the enum entries, each category + should be 10000 entries apart from the next one. The start of categories + are thus 10000, 20000, 30000, and so on. + + Adding items to an enum MUST always append to a "category", never add + items in the middle of a category. The order of items MUST NOT be changed. + Any of the above would break the ABI. + + The enum item 0 is special and is used as terminator in some lists, thus + enums should not use this for "valid" entries (and start at 10000 instead). + Doxygen -------