diff options
author | Aaron Marks <nymacro@gmail.com> | 2005-07-16 10:00:53 +0000 |
---|---|---|
committer | Aaron Marks <nymacro@gmail.com> | 2005-07-16 10:00:53 +0000 |
commit | ce87adec648c69af2313e6077dad467d9ca8af3f (patch) | |
tree | f74727012cd5f1f646e4b75c7a8c47c80424af4c /src/messagein.cpp | |
parent | 34e887895276242efaf2e0b5f1700c1ab1d6b3db (diff) | |
download | manaserv-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.cpp | 4 |
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 { |