diff options
Diffstat (limited to 'MdePkg/Include/Base.h')
-rw-r--r-- | MdePkg/Include/Base.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MdePkg/Include/Base.h b/MdePkg/Include/Base.h index cd860acd91..4fcc3a1bf6 100644 --- a/MdePkg/Include/Base.h +++ b/MdePkg/Include/Base.h @@ -894,6 +894,12 @@ typedef UINTN RETURN_STATUS; ///
#define RETURN_INVALID_LANGUAGE ENCODE_ERROR (32)
+///
+/// The security status of the data is unknown or compromised
+/// and the data must be updated or replaced to restore a valid
+/// security status.
+///
+#define RETURN_COMPROMISED_DATA ENCODE_ERROR (33)
///
/// The string contained one or more characters that
@@ -918,6 +924,12 @@ typedef UINTN RETURN_STATUS; ///
#define RETURN_WARN_BUFFER_TOO_SMALL ENCODE_WARNING (4)
+///
+/// The data has not been updated within the timeframe set by
+/// local policy for this type of data.
+///
+#define RETURN_WARN_STALE_DATA ENCODE_WARNING (5)
+
/**
Returns a 16-bit signature built from 2 ASCII characters.
|