ManaPlus
mail2recv.h
Go to the documentation of this file.
1 /*
2  * The ManaPlus Client
3  * Copyright (C) 2011-2019 The ManaPlus Developers
4  * Copyright (C) 2019-2021 Andrei Karas
5  *
6  * This file is part of The ManaPlus Client.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  */
21 
22 #ifndef NET_EATHENA_MAIL2RECV_H
23 #define NET_EATHENA_MAIL2RECV_H
24 
25 #include <string>
26 #include <queue>
27 
28 struct MailQueue;
29 
30 namespace Net
31 {
32  class MessageIn;
33 } // namespace Net
34 
35 namespace EAthena
36 {
37  namespace Mail2Recv
38  {
39  extern std::queue<MailQueue*> mMailQueue;
40  extern std::string mCheckedName;
41 
53  } // namespace Mail2Recv
54 } // namespace EAthena
55 
56 #endif // NET_EATHENA_MAIL2RECV_H
bool msg(InputEvent &event)
Definition: chat.cpp:39
void processMailDelete(Net::MessageIn &msg)
Definition: mail2recv.cpp:488
void processRequestItems(Net::MessageIn &msg)
Definition: mail2recv.cpp:529
void processAddItemResult(Net::MessageIn &msg)
Definition: mail2recv.cpp:80
void processMailIcon(Net::MessageIn &msg)
Definition: mail2recv.cpp:67
void processSendResult(Net::MessageIn &msg)
Definition: mail2recv.cpp:301
void processReadMail(Net::MessageIn &msg)
Definition: mail2recv.cpp:389
void processCheckNameResult(Net::MessageIn &msg)
Definition: mail2recv.cpp:241
void processMailListPage(Net::MessageIn &msg)
Definition: mail2recv.cpp:329
void processRequestMoney(Net::MessageIn &msg)
Definition: mail2recv.cpp:500
std::string mCheckedName
Definition: mail2recv.cpp:64
void processRemoveItemResult(Net::MessageIn &msg)
Definition: mail2recv.cpp:181
std::queue< MailQueue * > mMailQueue
Definition: mail2recv.cpp:63
void processOpenNewMailWindow(Net::MessageIn &msg)
Definition: mail2recv.cpp:73