wiiqt6/nandExtract/main.cpp
giantpune@gmail.com cc7d47f3ab * add access functions to the nandBin class to get the cluster map for whole nand and for a given file
* change the nandExtract program a bit.  move nand extraction to a thread to keep it from hanging the main thread
* add pretty block map

git-svn-id: http://wiiqt.googlecode.com/svn/trunk@15 389f4c8b-5dfe-645f-db0e-df882bc27289
2010-12-11 10:12:50 +00:00

13 lines
217 B
C++
Executable File

#include <QtGui/QApplication>
#include "nandwindow.h"
int main(int argc, char *argv[])
{
Q_INIT_RESOURCE( rc );
QApplication a(argc, argv);
NandWindow w;
w.show();
return a.exec();
}