Changeset 2756 for code/trunk/src/network
- Timestamp:
- Mar 8, 2009, 1:24:15 PM (16 years ago)
- Location:
- code/trunk/src/network
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/network/ClientConnection.h
r2171 r2756 44 44 45 45 #include <string> 46 #ifndef WIN32_LEAN_AND_MEAN 47 # define WIN32_LEAN_AND_MEAN 48 #endif 49 #define NOMINMAX // required to stop windows.h screwing up std::min definition 46 50 #include <enet/enet.h> 47 51 #include <boost/thread/recursive_mutex.hpp> -
code/trunk/src/network/ClientInformation.h
r2662 r2756 43 43 #include "NetworkPrereqs.h" 44 44 45 #ifndef WIN32_LEAN_AND_MEAN 46 # define WIN32_LEAN_AND_MEAN 47 #endif 48 #define NOMINMAX // required to stop windows.h screwing up std::min definition 45 49 #include <enet/enet.h> 46 50 #include <boost/thread/recursive_mutex.hpp> -
code/trunk/src/network/ConnectionManager.h
r2171 r2756 46 46 #include <map> 47 47 // enet library for networking support 48 #ifndef WIN32_LEAN_AND_MEAN 49 # define WIN32_LEAN_AND_MEAN 50 #endif 51 #define NOMINMAX // required to stop windows.h screwing up std::min definition 48 52 #include <enet/enet.h> 49 53 #include <boost/thread/recursive_mutex.hpp> -
code/trunk/src/network/PacketBuffer.h
r2171 r2756 44 44 #include "NetworkPrereqs.h" 45 45 46 #ifndef WIN32_LEAN_AND_MEAN 47 # define WIN32_LEAN_AND_MEAN 48 #endif 49 #define NOMINMAX // required to stop windows.h screwing up std::min definition 46 50 #include <enet/enet.h> 47 51 #include <boost/thread/recursive_mutex.hpp> -
code/trunk/src/network/packet/DeleteObjects.cc
r2662 r2756 29 29 30 30 #include "DeleteObjects.h" 31 #ifndef WIN32_LEAN_AND_MEAN 32 # define WIN32_LEAN_AND_MEAN 33 #endif 34 #define NOMINMAX // required to stop windows.h screwing up std::min definition 31 35 #include <enet/enet.h> 32 36 #include "network/synchronisable/Synchronisable.h" -
code/trunk/src/network/packet/Packet.cc
r2710 r2756 31 31 32 32 #include <cassert> 33 #ifndef WIN32_LEAN_AND_MEAN 34 # define WIN32_LEAN_AND_MEAN 35 #endif 36 #define NOMINMAX // required to stop windows.h screwing up std::min definition 33 37 #include <enet/enet.h> 34 38 #include <boost/bind.hpp> -
code/trunk/src/network/packet/Packet.h
r2710 r2756 32 32 33 33 #include <map> 34 #ifndef WIN32_LEAN_AND_MEAN 35 # define WIN32_LEAN_AND_MEAN 36 #endif 37 #define NOMINMAX // required to stop windows.h screwing up std::min definition 34 38 #include <enet/enet.h> 35 39 #include <boost/thread/recursive_mutex.hpp>
Note: See TracChangeset
for help on using the changeset viewer.