blob: cd4cd41403deb7dc99b5d45aa1e47319fda92b4d (
plain) (
tree)
|
|
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 - 2015 Evol developers
#ifndef EVOL_MAP_ATCOMMAND
#define EVOL_MAP_ATCOMMAND
const char* eatcommand_msgsd_pre(struct map_session_data **sdPtr,
int *msgPtr);
const char* eatcommand_msgfd_pre(int *fdPtr,
int *msgPtr);
#define ACMD1(x) bool atcommand_ ## x (const int fd __attribute__ ((unused)), \
struct map_session_data* sd __attribute__ ((unused)), \
const char* command __attribute__ ((unused)), \
const char* message, struct AtCommandInfo *info __attribute__ ((unused)))
#define ACMD2(x) bool atcommand_ ## x (const int fd, \
struct map_session_data* sd, \
const char* command __attribute__ ((unused)), \
const char* message, \
struct AtCommandInfo *info)
ACMD2(setSkill);
ACMD2(slide);
ACMD1(mapExit);
#endif // EVOL_MAP_ATCOMMAND
|