diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-09 00:10:06 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-09 00:10:06 +0000 |
commit | 6f96f2dea64de97bd5a16a146c8ce943b01563de (patch) | |
tree | 25a12c7facec28b21f18fefc8edff1115e24f7a0 /src/map/clif.h | |
parent | ea692a1f5c94f05619a7d0e9cb4ab4a9a1d24093 (diff) | |
download | hercules-6f96f2dea64de97bd5a16a146c8ce943b01563de.tar.gz hercules-6f96f2dea64de97bd5a16a146c8ce943b01563de.tar.bz2 hercules-6f96f2dea64de97bd5a16a146c8ce943b01563de.tar.xz hercules-6f96f2dea64de97bd5a16a146c8ce943b01563de.zip |
- Made conv_str return const char* since the script engine screws up if you mess with the position of the terminator on the received string.
- Because of this, many functions that handled the return of conv_str need to be changed, I haven't finished doing the conversion process because I must go already, if someone else can continue, please do so (I will resume work on this in ~5 hours
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9978 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index ca3ae2278..fba601fce 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -83,7 +83,7 @@ int clif_fixpos2(struct block_list *); // area int clif_npcbuysell(struct map_session_data*,int); //self int clif_buylist(struct map_session_data*,struct npc_data*); //self int clif_selllist(struct map_session_data*); //self -int clif_scriptmes(struct map_session_data*,int,char*); //self +int clif_scriptmes(struct map_session_data*,int,const char*); //self int clif_scriptnext(struct map_session_data*,int); //self int clif_scriptclose(struct map_session_data*,int); //self int clif_scriptmenu(struct map_session_data*,int,char*); //self @@ -134,8 +134,8 @@ void clif_divorced(struct map_session_data *sd, char *); //void clif_callpartner(struct map_session_data *sd); void clif_adopt_process(struct map_session_data *sd); void clif_sitting(struct map_session_data *sd); -void clif_soundeffect(struct map_session_data *sd,struct block_list *bl,char *name,int type); -int clif_soundeffectall(struct block_list *bl, char *name, int type, int coverage); +void clif_soundeffect(struct map_session_data *sd,struct block_list *bl,const char *name,int type); +int clif_soundeffectall(struct block_list *bl, const char *name, int type, int coverage); void clif_parse_ActionRequest_sub(struct map_session_data *sd, int action_type, int target_id, unsigned int tick); void clif_parse_LoadEndAck(int fd,struct map_session_data *sd); @@ -296,12 +296,12 @@ int clif_guild_xy_remove(struct map_session_data *sd); // atcommand -int clif_displaymessage(const int fd,char* mes); -int clif_disp_onlyself(struct map_session_data *sd,char *mes,int len); +int clif_displaymessage(const int fd,const char* mes); +int clif_disp_onlyself(struct map_session_data *sd,const char *mes,int len); void clif_disp_message(struct block_list *src, char *mes, int len, int type); int clif_GMmessage(struct block_list *bl,char* mes,int len,int flag); void clif_MainChatMessage(char* message); //luzza -int clif_announce(struct block_list *bl, char* mes, int len, unsigned long color, int flag); +int clif_announce(struct block_list *bl, const char* mes, int len, unsigned long color, int flag); int clif_heal(int fd,int type,int val); int clif_resurrection(struct block_list *bl,int type); int clif_set0199(int fd,int type); |