xca/lib/db_dump.cpp
Christian b0b9cd1d00 Add options dialog, not done yet...
unfy hashAlgo handling (hashBox)
2007-05-13 20:09:45 +02:00

33 lines
528 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#include "db.h"
int main(int argc, char *argv[])
{
if (argc<2)
return 1;
QString database = argv[1];
db mydb(database);
unsigned char *p;
db_header_t h;
int i=0;
char type[] = "NKRCLTSXX";
mydb.first(0);
while (!mydb.eof()) {
p = mydb.load(&h);
free(p);
printf("%3d: %c V%d O:%6d, F:%x L:%5d %s\n",
i++, type[h.type], h.version, mydb.head_offset,
h.flags, h.len, h.name);
mydb.next(0);
}
}