Changeset 100009 in vbox for trunk/include/iprt
- Timestamp:
- May 30, 2023 9:55:31 AM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 157677
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r100006 r100009 2821 2821 /** The DTB being parsed is malformed. */ 2822 2822 #define VERR_FDT_DTB_MALFORMED (-27000) 2823 /** The DTB being parsed has an invalid header magic. */ 2824 #define VERR_FDT_DTB_HDR_MAGIC_INVALID (-27001) 2825 /** The DTB being parsed has a version set which is not supported. */ 2826 #define VERR_FDT_DTB_HDR_VERSION_NOT_SUPPORTED (-27002) 2827 /** The DTB being parsed has an invalid last compatible version set. */ 2828 #define VERR_FDT_DTB_HDR_LAST_COMPAT_VERSION_INVALID (-27003) 2829 /** The DTB being parsed has an invalid size set in the header compared to the actual size. */ 2830 #define VERR_FDT_DTB_HDR_SIZE_INVALID (-27004) 2831 /** The DTB being parsed has an invalid memory reservation block offset. */ 2832 #define VERR_FDT_DTB_HDR_MEM_RSV_BLOCK_OFF_INVALID (-27005) 2833 /** The DTB being parsed has an invalid struct block offset. */ 2834 #define VERR_FDT_DTB_HDR_STRUCT_BLOCK_OFF_INVALID (-27006) 2835 /** The DTB being parsed has an invalid strings block offset. */ 2836 #define VERR_FDT_DTB_HDR_STRINGS_BLOCK_OFF_INVALID (-27007) 2837 /** The DTB being parsed has no terminating memory reservation block entry before the start of the structs block. */ 2838 #define VERR_FDT_DTB_MEM_RSV_BLOCK_TERMINATOR_MISSING (-27008) 2839 /** The DTB being parsed has an invalid strings block offset. */ 2840 #define VERR_FDT_DTB_STRINGS_BLOCK_NOT_TERMINATED (-27009) 2823 2841 /** @} */ 2824 2842
Note:
See TracChangeset
for help on using the changeset viewer.