diff options
-rw-r--r-- | src/vmstate.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vmstate.h b/src/vmstate.h index 94c6a4b..e3e2459 100644 --- a/src/vmstate.h +++ b/src/vmstate.h @@ -173,6 +173,9 @@ enum VMStateFlags { * VMStateField.struct_version_id to tell which version of the * structure we are referencing to use. */ VMS_VSTRUCT = 0x8000, + + /* Marker for end of list */ + VMS_END = 0x10000 }; struct VMStateField { @@ -386,6 +389,7 @@ extern const VMStateInfo slirp_vmstate_info_tmp; #define VMSTATE_END_OF_LIST() \ { \ + .flags = VMS_END, \ } #endif |