summaryrefslogtreecommitdiff
path: root/src/map/pc.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-05 22:23:12 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-05 22:26:06 +0300
commit6b230a4de27de394dd4e28662cd27070ab91c1f1 (patch)
tree58dba9c128bb7eb480472dd42d5e6b44401b74e3 /src/map/pc.h
parentdb82d35cb549aa305df53c4f0cbe5149062161e3 (diff)
downloadevol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.tar.gz
evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.tar.bz2
evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.tar.xz
evol-hercules-6b230a4de27de394dd4e28662cd27070ab91c1f1.zip
Replace struct map_session_data to TBL_PC.
Diffstat (limited to 'src/map/pc.h')
-rw-r--r--src/map/pc.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/map/pc.h b/src/map/pc.h
index 429a74d..313e049 100644
--- a/src/map/pc.h
+++ b/src/map/pc.h
@@ -9,17 +9,17 @@ enum VarConst
Const_ClientVersion = 10000
};
-int epc_readparam_pre(struct map_session_data* sd, int *type);
+int epc_readparam_pre(TBL_PC* sd, int *type);
-int epc_setregistry(struct map_session_data *sd, int64 *reg, int *val);
+int epc_setregistry(TBL_PC *sd, int64 *reg, int *val);
-void epc_equipitem_pos(struct map_session_data *sd, struct item_data *id, int *posPtr);
+void epc_equipitem_pos(TBL_PC *sd, struct item_data *id, int *posPtr);
-void epc_unequipitem_pos(struct map_session_data *sd, int *nPtr, int *posPtr);
+void epc_unequipitem_pos(TBL_PC *sd, int *nPtr, int *posPtr);
-bool epc_can_attack (struct map_session_data *sd, int *target_id);
+bool epc_can_attack (TBL_PC *sd, int *target_id);
-int epc_takeitem(struct map_session_data *sd, struct flooritem_data *fitem);
+int epc_takeitem(TBL_PC *sd, struct flooritem_data *fitem);
void epc_validate_levels(void);