add enet test for remote visual debugger

This commit is contained in:
erwin coumans
2013-05-04 19:50:56 -07:00
parent 26873328cf
commit c0a1ad8fcd
24 changed files with 6495 additions and 1 deletions

View 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__ */