mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-11 08:23:52 +00:00
11 lines
290 B
C
11 lines
290 B
C
#ifndef NET_MESSAGE_HANDLER_H
|
|
#define NET_MESSAGE_HANDLER_H
|
|
|
|
#include "common/datastore.h"
|
|
#include "net/message.h"
|
|
|
|
typedef int32_t (
|
|
*MESSAGE_HANDLER_interface)(void* param, NETMESSAGE msgId, uint32_t time, CDataStore* msg);
|
|
typedef MESSAGE_HANDLER_interface MESSAGE_HANDLER;
|
|
|
|
#endif
|