blob: ad8ac7b67240145adec309cd0b319741ef8e78f7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder
#ifndef CHAR_INT_AUCTION_H
#define CHAR_INT_AUCTION_H
#include "../common/mmo.h"
void inter_auction_defaults(void);
/**
* inter_auction_interface interface
**/
struct inter_auction_interface {
DBMap* db; // int auction_id -> struct auction_data*
int (*count) (int char_id, bool buy);
void (*save) (struct auction_data *auction);
unsigned int (*create) (struct auction_data *auction);
int (*end_timer) (int tid, int64 tick, int id, intptr_t data);
void (*delete_) (struct auction_data *auction);
void (*fromsql) (void);
int (*parse_frommap) (int fd);
int (*sql_init) (void);
void (*sql_final) (void);
};
struct inter_auction_interface *inter_auction;
#endif /* CHAR_INT_AUCTION_H */
|