summaryrefslogtreecommitdiffstats
path: root/libs/enet/include/enet/types.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/enet/include/enet/types.h')
-rw-r--r--libs/enet/include/enet/types.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/libs/enet/include/enet/types.h b/libs/enet/include/enet/types.h
new file mode 100644
index 0000000..ab010a4
--- /dev/null
+++ b/libs/enet/include/enet/types.h
@@ -0,0 +1,13 @@
+/**
+ @file types.h
+ @brief type definitions for ENet
+*/
+#ifndef __ENET_TYPES_H__
+#define __ENET_TYPES_H__
+
+typedef unsigned char enet_uint8; /**< unsigned 8-bit type */
+typedef unsigned short enet_uint16; /**< unsigned 16-bit type */
+typedef unsigned int enet_uint32; /**< unsigned 32-bit type */
+
+#endif /* __ENET_TYPES_H__ */
+