summaryrefslogtreecommitdiff
path: root/src/messagein.cpp
diff options
context:
space:
mode:
authorAaron Marks <nymacro@gmail.com>2005-07-16 10:00:53 +0000
committerAaron Marks <nymacro@gmail.com>2005-07-16 10:00:53 +0000
commitce87adec648c69af2313e6077dad467d9ca8af3f (patch)
treef74727012cd5f1f646e4b75c7a8c47c80424af4c /src/messagein.cpp
parent34e887895276242efaf2e0b5f1700c1ab1d6b3db (diff)
downloadmanaserv-ce87adec648c69af2313e6077dad467d9ca8af3f.tar.gz
manaserv-ce87adec648c69af2313e6077dad467d9ca8af3f.tar.bz2
manaserv-ce87adec648c69af2313e6077dad467d9ca8af3f.tar.xz
manaserv-ce87adec648c69af2313e6077dad467d9ca8af3f.zip
Added chat message handler placeholder (still not fully functional).
Updated PostgreSQL SQL support - although there is still problem with primary key being initialized to null. Updated message enumeration.
Diffstat (limited to 'src/messagein.cpp')
-rw-r--r--src/messagein.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/messagein.cpp b/src/messagein.cpp
index 065c7052..f2faaf2c 100644
--- a/src/messagein.cpp
+++ b/src/messagein.cpp
@@ -52,7 +52,7 @@ char MessageIn::readByte()
return -1;
}
-unsigned short MessageIn::readShort()
+short MessageIn::readShort()
{
if (packet) // if Packet exists
{
@@ -70,7 +70,7 @@ unsigned short MessageIn::readShort()
return -1;
}
-unsigned long MessageIn::readLong()
+long MessageIn::readLong()
{
if (packet) // if Packet exists
{