Fix naughty enum typedefs.

This commit is contained in:
James Benton
2016-01-08 07:28:52 -08:00
parent 33247b5034
commit fddf6f2532
9 changed files with 38 additions and 36 deletions

View File

@@ -11,13 +11,11 @@
extern "C" {
#endif
typedef uint32_t OSMessageFlags;
enum OSMessageFlags
typedef enum OSMessageFlags
{
OS_MESSAGE_QUEUE_BLOCKING = 1 << 0,
OS_MESSAGE_QUEUE_HIGH_PRIORITY = 1 << 1,
};
} OSMessageFlags;
struct OSMessage
{