From 115a92e83a895ed12f0a57bb88c99c821694c6f3 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 3 Sep 2022 16:38:12 +0200 Subject: [PATCH] Add missing typedef to ContentRedirectionStatus --- include/content_redirection/redirection.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/content_redirection/redirection.h b/include/content_redirection/redirection.h index 6175250..44d427f 100644 --- a/include/content_redirection/redirection.h +++ b/include/content_redirection/redirection.h @@ -36,7 +36,7 @@ enum FSLayerType { FS_LAYER_TYPE_SAVE_REPLACE, }; -enum ContentRedirectionStatus { +typedef enum ContentRedirectionStatus { CONTENT_REDIRECTION_RESULT_SUCCESS = 0, CONTENT_REDIRECTION_RESULT_MODULE_NOT_FOUND = -1, CONTENT_REDIRECTION_RESULT_MODULE_MISSING_EXPORT = -2, @@ -47,7 +47,7 @@ enum ContentRedirectionStatus { CONTENT_REDIRECTION_RESULT_LAYER_NOT_FOUND = -13, CONTENT_REDIRECTION_RESULT_LIB_UNINITIALIZED = -20, CONTENT_REDIRECTION_RESULT_UNKNOWN_ERROR = -1000, -}; +} ContentRedirectionStatus; typedef uint32_t CRLayerHandle; typedef uint32_t ContentRedirectionVersion;