summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-08-11 20:31:27 +0300
committerAndrei Karas <akaras@inbox.ru>2017-08-11 20:31:27 +0300
commit66d940df678f16b5f53f58f80837826e24031eb1 (patch)
tree5201aa351f4760ff1e5d171c0ea4fa2b4d84a7c1 /src/net/tmwa
parentabb284e237e02cd78a975a703e349b799f7f446d (diff)
downloadplus-66d940df678f16b5f53f58f80837826e24031eb1.tar.gz
plus-66d940df678f16b5f53f58f80837826e24031eb1.tar.bz2
plus-66d940df678f16b5f53f58f80837826e24031eb1.tar.xz
plus-66d940df678f16b5f53f58f80837826e24031eb1.zip
Add packet CMSG_MAIL2_DELETE_MAIL 0x09f5.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/mail2handler.cpp5
-rw-r--r--src/net/tmwa/mail2handler.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/src/net/tmwa/mail2handler.cpp b/src/net/tmwa/mail2handler.cpp
index 3963c1fa5..ce80e1893 100644
--- a/src/net/tmwa/mail2handler.cpp
+++ b/src/net/tmwa/mail2handler.cpp
@@ -66,4 +66,9 @@ void Mail2Handler::readMail(const int openType A_UNUSED,
{
}
+void Mail2Handler::deleteMail(const int openType A_UNUSED,
+ const int64_t mailId A_UNUSED) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/mail2handler.h b/src/net/tmwa/mail2handler.h
index 1509ba969..cae94d788 100644
--- a/src/net/tmwa/mail2handler.h
+++ b/src/net/tmwa/mail2handler.h
@@ -53,6 +53,9 @@ class Mail2Handler final : public Net::Mail2Handler
void readMail(const int openType,
const int64_t mailId) const override final;
+
+ void deleteMail(const int openType,
+ const int64_t mailId) const override final;
};
} // namespace TmwAthena