diff options
author | David Timber <david@lyset.snart.me> | 2019-12-31 02:52:35 +1100 |
---|---|---|
committer | David Timber <david@lyset.snart.me> | 2019-12-31 02:52:35 +1100 |
commit | 85d78af0cd8b809abc28491c46c648a242053044 (patch) | |
tree | 3205ee7fce91644b08b61dac624fc9cab448e6a1 /src/proone_protocol.h | |
parent | f765952dc8b77ad36e4f624086441d290e82bf66 (diff) |
checkpoint
Diffstat (limited to 'src/proone_protocol.h')
-rw-r--r-- | src/proone_protocol.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/proone_protocol.h b/src/proone_protocol.h index 8196e91..c8b7f13 100644 --- a/src/proone_protocol.h +++ b/src/proone_protocol.h @@ -1,7 +1,8 @@ #pragma once #include <stddef.h> -enum proone_arch { + +typedef enum { PROONE_ARCH_NONE = -1, PROONE_ARCH_ARMV4T, @@ -17,9 +18,7 @@ enum proone_arch { PROONE_ARCH_SPC, NB_PROONE_ARCH -}; - -typedef enum proone_arch proone_arch_t; +} proone_arch_t; const char *proone_arch2str (const proone_arch_t x); |