mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-19 06:01:07 +03:00
22 lines
698 B
C++
22 lines
698 B
C++
#ifndef CLIENT_CLIENT_HANDLERS_HPP
|
|
#define CLIENT_CLIENT_HANDLERS_HPP
|
|
|
|
#include "net/Types.hpp"
|
|
#include <cstdint>
|
|
|
|
class CDataStore;
|
|
|
|
int32_t LoginVerifyWorldHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
|
|
|
|
int32_t NewWorldHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
|
|
|
|
int32_t NotifyHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
|
|
|
|
int32_t PlayedTimeHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
|
|
|
|
int32_t TransferAbortedHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
|
|
|
|
int32_t TransferPendingHandler(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
|
|
|
|
#endif
|