diff options
author | greenboxal2 <greenboxal2@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-25 21:20:43 +0000 |
---|---|---|
committer | greenboxal2 <greenboxal2@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-25 21:20:43 +0000 |
commit | b11bf6e1604097711291265f927e79e8f2af5c54 (patch) | |
tree | 6eac67dfe94b2cef4e48f59c1bf448a321ce24cd /src/map/duel.h | |
parent | d9c5c4784a0abc43fb9e01f365a0d8b3a15a0692 (diff) | |
download | hercules-b11bf6e1604097711291265f927e79e8f2af5c54.tar.gz hercules-b11bf6e1604097711291265f927e79e8f2af5c54.tar.bz2 hercules-b11bf6e1604097711291265f927e79e8f2af5c54.tar.xz hercules-b11bf6e1604097711291265f927e79e8f2af5c54.zip |
Applied AStyle code formating as discussed on tid:74602.
Removed /SAFESEH option from MSVC11 projects.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16968 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/duel.h')
-rw-r--r-- | src/map/duel.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/map/duel.h b/src/map/duel.h index 04d8e4e84..aeed77d4f 100644 --- a/src/map/duel.h +++ b/src/map/duel.h @@ -5,9 +5,9 @@ #define _DUEL_H_ struct duel { - int members_count; - int invites_count; - int max_players_limit; + int members_count; + int invites_count; + int max_players_limit; }; #define MAX_DUEL 1024 @@ -15,13 +15,13 @@ extern struct duel duel_list[MAX_DUEL]; extern int duel_count; //Duel functions // [LuzZza] -int duel_create(struct map_session_data* sd, const unsigned int maxpl); -void duel_invite(const unsigned int did, struct map_session_data* sd, struct map_session_data* target_sd); -void duel_accept(const unsigned int did, struct map_session_data* sd); -void duel_reject(const unsigned int did, struct map_session_data* sd); -void duel_leave(const unsigned int did, struct map_session_data* sd); -void duel_showinfo(const unsigned int did, struct map_session_data* sd); -int duel_checktime(struct map_session_data* sd); +int duel_create(struct map_session_data *sd, const unsigned int maxpl); +void duel_invite(const unsigned int did, struct map_session_data *sd, struct map_session_data *target_sd); +void duel_accept(const unsigned int did, struct map_session_data *sd); +void duel_reject(const unsigned int did, struct map_session_data *sd); +void duel_leave(const unsigned int did, struct map_session_data *sd); +void duel_showinfo(const unsigned int did, struct map_session_data *sd); +int duel_checktime(struct map_session_data *sd); void do_init_duel(void); void do_final_duel(void); |