4 To cover all the naming hacks that were previously in objects.h needed some
5 kind of hacks in objects.txt.
7 The basic syntax for adding an object is as follows:
9 1 2 3 4 : shortName : Long Name
11 If the long name doesn't contain spaces, or no short name
12 exists, the long name is used as basis for the base name
13 in C. Otherwise, the short name is used.
15 The base name (let's call it 'base') will then be used to
16 create the C macros SN_base, LN_base, NID_base and OBJ_base.
18 Note that if the base name contains spaces, dashes or periods,
19 those will be converte to underscore.
21 Then there are some extra commands:
25 This juts makes a name foo for an OID. The C macro
26 OBJ_foo will be created as a result.
30 This makes sure that the name foo will be used as base name
34 1 2 3 4 : shortName : Long Name
37 The !module command was meant to define a kind of modularity.
38 What it does is to make sure the module name is prepended
39 to the base name. !global turns this off. This construction
42 Lines starting with # are treated as comments, as well as any line starting
43 with ! and not matching the commands above.