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_STATUS_H_ |
---|
| 5 | #define _INT_STATUS_H_ |
---|
| 6 | |
---|
| 7 | struct status_change_data; |
---|
| 8 | |
---|
| 9 | struct scdata { |
---|
| 10 | int account_id, char_id; |
---|
| 11 | int count; |
---|
| 12 | struct status_change_data* data; |
---|
| 13 | }; |
---|
| 14 | |
---|
| 15 | extern char scdata_txt[1024]; |
---|
| 16 | |
---|
| 17 | struct scdata* status_search_scdata(int aid, int cid); |
---|
| 18 | void status_delete_scdata(int aid, int cid); |
---|
| 19 | void inter_status_save(void); |
---|
| 20 | void status_init(void); |
---|
| 21 | void status_final(void); |
---|
| 22 | |
---|
| 23 | #endif /* _INT_STATUS_H_ */ |
---|