- Starting preparatives for Auctions System.
- Added the @auction command to open the auctions. Just to start working on it and if someone wants to help. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12270 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
32
src/char_sql/int_auction.c
Normal file
32
src/char_sql/int_auction.c
Normal file
@@ -0,0 +1,32 @@
|
||||
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
|
||||
// For more information, see LICENCE in the main folder
|
||||
|
||||
#include "../common/mmo.h"
|
||||
#include "../common/malloc.h"
|
||||
#include "../common/db.h"
|
||||
#include "../common/showmsg.h"
|
||||
#include "../common/socket.h"
|
||||
#include "../common/strlib.h"
|
||||
#include "../common/sql.h"
|
||||
#include "char.h"
|
||||
#include "inter.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
static DBMap* auction_db = NULL; // int auction_id -> struct auction*
|
||||
|
||||
int inter_auction_sql_init(void)
|
||||
{
|
||||
auction_db = idb_alloc(DB_OPT_RELEASE_DATA);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void inter_auction_sql_final(void)
|
||||
{
|
||||
auction_db->destroy(auction_db,NULL);
|
||||
|
||||
return;
|
||||
}
|
||||
8
src/char_sql/int_auction.h
Normal file
8
src/char_sql/int_auction.h
Normal file
@@ -0,0 +1,8 @@
|
||||
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
|
||||
// For more information, see LICENCE in the main folder
|
||||
|
||||
#ifndef _INT_AUCTION_SQL_H_
|
||||
#define _INT_AUCTION_SQL_H_
|
||||
|
||||
|
||||
#endif /* _INT_AUCTION_SQL_H_ */
|
||||
Reference in New Issue
Block a user