aboutsummaryrefslogtreecommitdiff
path: root/src/proone_protocol.h
diff options
context:
space:
mode:
authorDavid Timber <mieabby@gmail.com>2020-01-01 09:50:34 +1100
committerDavid Timber <mieabby@gmail.com>2020-01-01 09:50:34 +1100
commited809a51fdd1c313cd256301ef6f7211e8394cb1 (patch)
tree81a3054ce0d42976f80c973e2b6ebf9c1b8b7476 /src/proone_protocol.h
parent6e456edb2757cf9d28d306afb836aa16780fb912 (diff)
checkpoint
Diffstat (limited to 'src/proone_protocol.h')
-rw-r--r--src/proone_protocol.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/proone_protocol.h b/src/proone_protocol.h
deleted file mode 100644
index c8b7f13..0000000
--- a/src/proone_protocol.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#pragma once
-#include <stddef.h>
-
-
-typedef enum {
- PROONE_ARCH_NONE = -1,
-
- PROONE_ARCH_ARMV4T,
- PROONE_ARCH_ARMV7,
- PROONE_ARCH_I586,
- PROONE_ARCH_M68K,
- PROONE_ARCH_MIPS,
- PROONE_ARCH_MPSL,
- PROONE_ARCH_PPC,
- PROONE_ARCH_RV32,
- PROONE_ARCH_RV64,
- PROONE_ARCH_SH4,
- PROONE_ARCH_SPC,
-
- NB_PROONE_ARCH
-} proone_arch_t;
-
-
-const char *proone_arch2str (const proone_arch_t x);
-proone_arch_t proone_str2arch (const char *str);