
- Abstraction for the sql code (sql.c/h). - New configure script and makefiles. - Restored txt zeny logging code. (r10814) - Rewrote mapserver's sql code - itemdb, mobdb, mapreg, logs. (r10814) - Fixed a precedence issue (&& and ) in char_sql/char.c. (r10833) - Improved db reading code a bit for consistency. (r11077) - Added separate atcommand for mail deletion. (r11077) - Corrected a few messages that said "new" instead of "unread". (r11077) - Broadcast (*) messages now use "*" as the target's name (not ""). (r11077) - Moved StringBuf code from utils.c/h to strlib.c/h. (r11084 r11117) - Some misc login server cleanups (reformatting etc). (r11136) - Corrected/modified some header entries. (r11141 r11147 11148) - Adjusted VS project files. (r11147) - Adjusted the way the sql charserver does item saving. (r11192) - Corrected usage of reserved keyword 'friend' in mmo.h. (r11192) git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11245 54d463be-8e91-2dee-dedb-b68131a5f0ec
22 lines
520 B
C
22 lines
520 B
C
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
|
|
// For more information, see LICENCE in the main folder
|
|
|
|
#ifndef _INT_PET_SQL_H_
|
|
#define _INT_PET_SQL_H_
|
|
|
|
struct s_pet;
|
|
|
|
int inter_pet_init(void);
|
|
void inter_pet_sql_final(void);
|
|
int inter_pet_save(void);
|
|
int inter_pet_delete(int pet_id);
|
|
|
|
int inter_pet_parse_frommap(int fd);
|
|
int inter_pet_sql_init(void);
|
|
//extern char pet_txt[256];
|
|
|
|
//Exported for use in the TXT-SQL converter.
|
|
int inter_pet_tosql(int pet_id, struct s_pet *p);
|
|
|
|
#endif /* _INT_PET_SQL_H_ */
|