
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. EVERYTHING ELSE GOES INTO TRUNK AND WILL BE MERGED INTO STABLE BY VALARIS AND WIZPUTER. -- VALARIS git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5094 54d463be-8e91-2dee-dedb-b68131a5f0ec
23 lines
858 B
C
23 lines
858 B
C
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef _CHAT_H_
|
|
#define _CHAT_H_
|
|
|
|
#include "map.h"
|
|
|
|
int chat_createchat(struct map_session_data *,int,int,char*,char*,int);
|
|
int chat_joinchat(struct map_session_data *,int,char*);
|
|
int chat_leavechat(struct map_session_data* );
|
|
int chat_changechatowner(struct map_session_data *,char *);
|
|
int chat_changechatstatus(struct map_session_data *,int,int,char*,char*,int);
|
|
int chat_kickchat(struct map_session_data *,char *);
|
|
|
|
int chat_createnpcchat(struct npc_data *nd,int limit,int pub,int trigger,char* title,int titlelen,const char *ev);
|
|
int chat_deletenpcchat(struct npc_data *nd);
|
|
int chat_enableevent(struct chat_data *cd);
|
|
int chat_disableevent(struct chat_data *cd);
|
|
int chat_npckickall(struct chat_data *cd);
|
|
|
|
#endif
|