add enet for some client/server tests
This commit is contained in:
12
examples/ThirdPartyLibs/enet/include/enet/utility.h
Normal file
12
examples/ThirdPartyLibs/enet/include/enet/utility.h
Normal file
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
@file utility.h
|
||||
@brief ENet utility header
|
||||
*/
|
||||
#ifndef __ENET_UTILITY_H__
|
||||
#define __ENET_UTILITY_H__
|
||||
|
||||
#define ENET_MAX(x, y) ((x) > (y) ? (x) : (y))
|
||||
#define ENET_MIN(x, y) ((x) < (y) ? (x) : (y))
|
||||
|
||||
#endif /* __ENET_UTILITY_H__ */
|
||||
|
||||
Reference in New Issue
Block a user