mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
23 lines
648 B
C
23 lines
648 B
C
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#ifndef RIPPLE_DBINIT_H_INCLUDED
|
|
#define RIPPLE_DBINIT_H_INCLUDED
|
|
|
|
// VFALCO TODO Tidy these up into a class with functions and return types.
|
|
extern const char* RpcDBInit[];
|
|
extern const char* TxnDBInit[];
|
|
extern const char* LedgerDBInit[];
|
|
extern const char* WalletDBInit[];
|
|
|
|
// VFALCO TODO Figure out what these counts are for
|
|
extern int RpcDBCount;
|
|
extern int TxnDBCount;
|
|
extern int LedgerDBCount;
|
|
extern int WalletDBCount;
|
|
|
|
#endif
|