diff options
Diffstat (limited to 'src/map/clif.h')
-rw-r--r-- | src/map/clif.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/map/clif.h b/src/map/clif.h index daca310ef..a1246f97a 100644 --- a/src/map/clif.h +++ b/src/map/clif.h @@ -26,6 +26,13 @@ struct guild; #include <stdarg.h> // server->client protocol version +// v0 - pre-? +// v1 - ? - 0x196 +// v2 - ? - 0x78, 0x79 +// v3 - ? - 0x1c8, 0x1c9, 0x1de +// v4 - ? - 0x1d7, 0x1d8, 0x1d9, 0x1da +// v5 - 2003-12-18aSakexe+ - 0x1ee, 0x1ef, 0x1f0 +// v6 - 2004-03-02aSakexe+ - 0x1f4, 0x1f5 // v7 - 2005-04-11aSakexe+ - 0x229, 0x22a, 0x22b, 0x22c // v8 - 2007-05-21aSakexe+ - 0x283 // v9 - 2007-11-06aSakexe+ - 0x78, 0x7c, 0x22c @@ -168,7 +175,7 @@ void clif_hotkeys_send(struct map_session_data *sd); // trade void clif_traderequest(struct map_session_data* sd, const char* name); -void clif_tradestart(struct map_session_data* sd, int type); +void clif_tradestart(struct map_session_data* sd, uint8 type); void clif_tradeadditem(struct map_session_data* sd, struct map_session_data* tsd, int index, int amount); void clif_tradeitemok(struct map_session_data* sd, int index, int fail); void clif_tradedeal_lock(struct map_session_data* sd, int fail); |