Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/network/src/lib/network/netdefs.h @ 5627

Last change on this file since 5627 was 5624, checked in by rennerc, 19 years ago

network_unit_test.cc: added simple test for network_socket
network_socket: should compile and could work ;)
netdefs.h: changed #ifndef/#define _NETWORK_MANAGER to #ifndef/define _NETDEFS

File size: 288 bytes
Line 
1
2
3/*!
4 * @file network_manager.h
5 *  Main interface for the network module. Manages all the modules
6
7 */
8
9#ifndef _NETDEFS
10#define _NETDEFS
11
12#ifdef HAVE_SDL_NET_H
13  #include <SDL_net.h>
14#else
15  #include <SDL/SDL_net.h>
16#endif
17
18
19typedef unsigned char byte;
20
21
22#endif /* _NETWORK_MANAGER */
Note: See TracBrowser for help on using the repository browser.