summaryrefslogtreecommitdiff
path: root/src/map/intif.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/intif.h')
-rw-r--r--src/map/intif.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/map/intif.h b/src/map/intif.h
index c75b93201..21f7a494c 100644
--- a/src/map/intif.h
+++ b/src/map/intif.h
@@ -68,7 +68,7 @@ struct intif_interface {
int (*saveregistry) (struct map_session_data *sd);
int (*request_registry) (struct map_session_data *sd, int flag);
void (*request_account_storage) (const struct map_session_data *sd);
- void (*send_account_storage) (const struct map_session_data *sd);
+ void (*send_account_storage) (struct map_session_data *sd);
int (*request_guild_storage) (int account_id, int guild_id);
int (*send_guild_storage) (int account_id, struct guild_storage *gstor);
int (*create_party) (struct party_member *member, const char *name, int item, int item2);
@@ -145,6 +145,9 @@ struct intif_interface {
void (*request_accinfo) (int u_fd, int aid, int group_lv, char* query);
/* */
int (*CheckForCharServer) (void);
+ /* Achievement System [Smokexyz/Hercules] */
+ void(*achievements_request) (struct map_session_data *sd);
+ void(*achievements_save) (struct map_session_data *sd);
/* */
void (*pWisMessage) (int fd);
void (*pWisEnd) (int fd);
@@ -217,6 +220,8 @@ struct intif_interface {
void(*pRodexCheckName) (int fd);
/* Clan System */
void (*pRecvClanMemberAction) (int fd);
+ /* Achievements */
+ void (*pAchievementsLoad) (int fd);
};
#ifdef HERCULES_CORE