diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/conf/conftypes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/conf/conftypes.h b/src/lib/conf/conftypes.h index 612272e453..4609564b34 100644 --- a/src/lib/conf/conftypes.h +++ b/src/lib/conf/conftypes.h @@ -122,8 +122,12 @@ typedef struct struct_member_t { * that they have the correct type. */ typedef struct struct_magic_decl_t { + /** The name of the structure */ const char *typename; + /** A value used to recognize instances of this structure. */ uint32_t magic_val; + /** The location within the structure at which we expect to find + * <b>magic_val</b>. */ ptrdiff_t magic_offset; } struct_magic_decl_t; |