stoneage8.5/石器时代服务器端最新完整源代码/Serv/gmsv/include/char_talk.h
anson1788 a5b185b7ef Revert "re upload"
This reverts commit 274b7d169c.
2020-06-23 15:23:51 +08:00

53 lines
1.2 KiB
C

#ifndef __CHAR_TALK_H__
#define __CHAR_TALK_H__
#include "common.h"
#include "util.h"
#include "net.h"
#ifdef _ALLBLUES_LUA
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
#endif
void CHAR_getMessageBody(char* message, char* kind, int kindlen,
char** body);
int CHAR_getChatMagicFuncLevel(char* name,BOOL isDebug);
int CHAR_getChatMagicFuncNameAndString( int ti, char* name, char *usestring, int level, BOOL isDebug);
int CHAR_getChatMagicFuncMaxNum( void);
void OneByOneTkChannel ( int fd , char *tmp1 , char *tmp2 , int color) ;
typedef void (*CHATMAGICFUNC)(int,char*);
CHATMAGICFUNC CHAR_getChatMagicFuncPointer(char* name, BOOL isDebug);
#ifdef _RE_GM_COMMAND
int re_gm_command();
#endif
#ifdef _FILTER_TALK
int ReadFilterTalk();
char *getFilterTalk(int index);
int getFilterTalkNum();
#endif
#ifdef _ALLBLUES_LUA_1_2
typedef struct tagMAGIC_LuaFunc
{
lua_State *lua;
char *luafuncname;
char *luafunctable;
int gmlevel;
char *usestring;
struct tagMAGIC_LuaFunc *next;
}MAGIC_LuaFunc;
BOOL MAGIC_addLUAListFunction( lua_State *L, const char *luafuncname, const char *luafunctable, int gmlevel, char *usestring );
BOOL MAGIC_getLUAListFunction( char *luafuncname, int gmlevel, int charaindex, char *data );
#endif
#endif