diff options
author | dastgir <dastgirpojee@rocketmail.com> | 2015-09-09 09:28:39 -0400 |
---|---|---|
committer | dastgir <dastgirpojee@rocketmail.com> | 2015-09-09 10:03:58 -0400 |
commit | 0af11c16f1daf23d77a237b9452945706e9b40bc (patch) | |
tree | 004aa5258eb7eb37a29b8dc04a9df6b357ee0857 /src/map/pc.h | |
parent | c76aa5f4843a521b1839875bf6c139f4658bd6d1 (diff) | |
download | hercules-0af11c16f1daf23d77a237b9452945706e9b40bc.tar.gz hercules-0af11c16f1daf23d77a237b9452945706e9b40bc.tar.bz2 hercules-0af11c16f1daf23d77a237b9452945706e9b40bc.tar.xz hercules-0af11c16f1daf23d77a237b9452945706e9b40bc.zip |
Autotrade Struct to HPM
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 85bbd2016..26df30527 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -757,6 +757,9 @@ struct autotrade_vending { struct item list[MAX_VENDING]; struct s_vending vending[MAX_VENDING]; unsigned char vend_num; + /* HPM Custom Struct */ + struct HPluginData **hdata; + unsigned int hdatac; }; /*===================================== @@ -1066,6 +1069,7 @@ END_ZEROED_BLOCK; /* End */ void (*autotrade_start) (struct map_session_data *sd); void (*autotrade_prepare) (struct map_session_data *sd); void (*autotrade_populate) (struct map_session_data *sd); + int (*autotrade_final) (DBKey key, DBData *data, va_list ap); int (*check_job_name) (const char *name); }; |