root/src/char/int_storage.h

Revision 1, 0.7 kB (checked in by jinshiro, 17 years ago)
Line 
1// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
2// For more information, see LICENCE in the main folder
3
4#ifndef _INT_STORAGE_H_
5#define _INT_STORAGE_H_
6
7struct storage;
8struct guild_storage;
9
10int inter_storage_init(void);
11void inter_storage_final(void);
12int inter_storage_save(void);
13int inter_guild_storage_save(void);
14int inter_storage_delete(int account_id);
15int inter_guild_storage_delete(int guild_id);
16int inter_storage_parse_frommap(int fd);
17
18extern char storage_txt[1024];
19extern char guild_storage_txt[1024];
20
21//Exported for use in the TXT-SQL converter.
22int storage_fromstr(char *str,struct storage *p);
23int guild_storage_fromstr(char *str,struct guild_storage *p);
24
25#endif /* _INT_STORAGE_H_ */
Note: See TracBrowser for help on using the browser.