mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
Some missing from merge.
Signed-off-by: Salja <salja2012@hotmail.de>
This commit is contained in:
parent
ec939a5bce
commit
f4be15a7af
1895 changed files with 160408 additions and 53601 deletions
|
|
@ -3,10 +3,17 @@
|
|||
#include <cassert>
|
||||
#include <string>
|
||||
|
||||
#ifdef _DLL
|
||||
#undef _DLL
|
||||
#endif
|
||||
|
||||
#include "StormLib.h"
|
||||
|
||||
class DBCFile
|
||||
{
|
||||
public:
|
||||
DBCFile(const std::string &filename);
|
||||
DBCFile(HANDLE file);
|
||||
~DBCFile();
|
||||
|
||||
// Open database. It must be openened before it can be used.
|
||||
|
|
@ -107,6 +114,7 @@ public:
|
|||
size_t getMaxId();
|
||||
private:
|
||||
std::string filename;
|
||||
HANDLE fileHandle;
|
||||
size_t recordSize;
|
||||
size_t recordCount;
|
||||
size_t fieldCount;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue