Skip to content

Commit

Permalink
Add missing typedef to ContentRedirectionStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Sep 3, 2022
1 parent 166df07 commit 115a92e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/content_redirection/redirection.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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;
Expand Down

0 comments on commit 115a92e

Please sign in to comment.