Revision 1, 0.5 kB
(checked in by jinshiro, 17 years ago)
|
|
Rev | Line | |
---|
[1] | 1 | // Copyright (c) Athena Dev Teams - Licensed under GNU GPL |
---|
| 2 | // For more information, see LICENCE in the main folder |
---|
| 3 | |
---|
| 4 | #ifndef _INT_PARTY_H_ |
---|
| 5 | #define _INT_PARTY_H_ |
---|
| 6 | |
---|
| 7 | struct party; |
---|
| 8 | |
---|
| 9 | int inter_party_init(void); |
---|
| 10 | void inter_party_final(void); |
---|
| 11 | int inter_party_save(void); |
---|
| 12 | int inter_party_parse_frommap(int fd); |
---|
| 13 | int inter_party_leave(int party_id,int account_id, int char_id); |
---|
| 14 | |
---|
| 15 | extern char party_txt[1024]; |
---|
| 16 | |
---|
| 17 | //For the TXT->SQL converter |
---|
| 18 | int inter_party_fromstr(char *str, struct party *p); |
---|
| 19 | |
---|
| 20 | #endif /* _INT_PARTY_H_ */ |
---|