Fixed some file types

git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@172 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
amber
2004-11-14 16:18:26 +00:00
parent 86ff5a2392
commit d479e29aee
665 changed files with 260486 additions and 260486 deletions

View File

@@ -1,39 +1,39 @@
// $Id: script.h,v 1.2 2004/09/25 05:32:19 MouseJstr Exp $
#ifndef _SCRIPT_H_
#define _SCRIPT_H_
struct script_data {
int type;
union {
int num;
char *str;
} u;
};
struct script_stack {
int sp,sp_max;
struct script_data *stack_data;
};
struct script_state {
struct script_stack *stack;
int start,end;
int pos,state;
int rid,oid;
char *script,*new_script;
int defsp,new_pos,new_defsp;
};
unsigned char * parse_script(unsigned char *,int);
int run_script(unsigned char *,int,int,int);
struct dbt* script_get_label_db();
struct dbt* script_get_userfunc_db();
int script_config_read(char *cfgName);
int do_init_script();
int do_final_script();
extern char mapreg_txt[];
#endif
// $Id: script.h,v 1.2 2004/09/25 05:32:19 MouseJstr Exp $
#ifndef _SCRIPT_H_
#define _SCRIPT_H_
struct script_data {
int type;
union {
int num;
char *str;
} u;
};
struct script_stack {
int sp,sp_max;
struct script_data *stack_data;
};
struct script_state {
struct script_stack *stack;
int start,end;
int pos,state;
int rid,oid;
char *script,*new_script;
int defsp,new_pos,new_defsp;
};
unsigned char * parse_script(unsigned char *,int);
int run_script(unsigned char *,int,int,int);
struct dbt* script_get_label_db();
struct dbt* script_get_userfunc_db();
int script_config_read(char *cfgName);
int do_init_script();
int do_final_script();
extern char mapreg_txt[];
#endif