changed return of wallet_accounts

This commit is contained in:
jed
2012-06-07 23:17:28 -07:00
parent 74518e77d0
commit ec9b304cb6
6 changed files with 12 additions and 8 deletions

View File

@@ -236,4 +236,11 @@ uint64 WinDatabase::getBigInt(int colIndex)
int WinDatabase::getBinary(int colIndex,unsigned char* buf,int maxSize)
{
return(0);
}
std::vector<unsigned char> WinDatabase::getBinary(int colIndex)
{
// TODO:
std::vector<unsigned char> vucResult;
return vucResult;
}

View File

@@ -50,6 +50,7 @@ public:
bool getBool(int colIndex);
uint64 getBigInt(int colIndex);
int getBinary(int colIndex,unsigned char* buf,int maxSize);
std::vector<unsigned char> getBinary(int colIndex);
bool getNull(int colIndex){ return(true); }
void escape(const unsigned char* start,int size,std::string& retStr);