From 3bf42c6ff3805a0d42bbc661794a95ff31bedc26 Mon Sep 17 00:00:00 2001 From: untodesu Date: Sat, 15 Mar 2025 16:22:09 +0500 Subject: Add whatever I was working on for the last month --- deps/include/enet/types.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 deps/include/enet/types.h (limited to 'deps/include/enet/types.h') diff --git a/deps/include/enet/types.h b/deps/include/enet/types.h new file mode 100644 index 0000000..ab010a4 --- /dev/null +++ b/deps/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__ */ + -- cgit