- 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:
zephyrus
2008-02-29 23:10:29 +00:00
parent 631a93c854
commit 48ba5004a6
7 changed files with 92 additions and 0 deletions

View 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;
}

View 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_ */