mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-09 22:18:58 +01:00
14 lines
347 B
C
14 lines
347 B
C
![]() |
/**
|
||
|
@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__ */
|
||
|
|