summaryrefslogtreecommitdiff
path: root/src/net/network.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-01-25 22:00:00 +0100
committerIra Rice <irarice@gmail.com>2009-01-25 18:14:53 -0700
commit50eae6ebe793295986071e748f3698154158d6cd (patch)
tree62bc29fc5a7fd641d4ef3ee919e182b6a3f35de4 /src/net/network.h
parent537d390ae65e9b8a2701c04baa22962f7db0f093 (diff)
downloadmana-client-50eae6ebe793295986071e748f3698154158d6cd.tar.gz
mana-client-50eae6ebe793295986071e748f3698154158d6cd.tar.bz2
mana-client-50eae6ebe793295986071e748f3698154158d6cd.tar.xz
mana-client-50eae6ebe793295986071e748f3698154158d6cd.zip
Removed the TMW branding from header guards
Diffstat (limited to 'src/net/network.h')
-rw-r--r--src/net/network.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/net/network.h b/src/net/network.h
index db4d7f07..c035f55c 100644
--- a/src/net/network.h
+++ b/src/net/network.h
@@ -19,17 +19,19 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-#ifndef _TMW_NETWORK_
-#define _TMW_NETWORK_
+#ifndef NETWORK_
+#define NETWORK_
#include <map>
#include <SDL_net.h>
#include <SDL_thread.h>
#include <string>
-#define TMW_CLIENT_PROTOCOL_VERSION 1
- /**< Protocol version, reported to the eAthena char and mapserver who
- can adjust the protocol accordingly */
+/**
+ * Protocol version, reported to the eAthena char and mapserver who can adjust
+ * the protocol accordingly.
+ */
+#define CLIENT_PROTOCOL_VERSION 1
class MessageHandler;
class MessageIn;