* dont need save file stuff in nandbincheck

This commit is contained in:
giantpune 2011-05-18 17:34:45 +00:00
parent a27c48058c
commit 34a4f8876c
3 changed files with 27 additions and 28 deletions

View File

@ -1363,7 +1363,7 @@ QByteArray U8::GetIMET( const QStringList &names, int paddingType, quint32 iconS
return ret; return ret;
} }
const QStringList U8::IMETNames() const QStringList &U8::IMETNames()
{ {
return imetNames; return imetNames;
} }

View File

@ -18,29 +18,29 @@ korean
struct FEntry struct FEntry
{ {
union union
{ {
struct struct
{ {
unsigned int Type :8; unsigned int Type :8;
unsigned int NameOffset :24; unsigned int NameOffset :24;
}; };
unsigned int TypeName; unsigned int TypeName;
}; };
union union
{ {
struct // File Entry struct // File Entry
{ {
unsigned int FileOffset; unsigned int FileOffset;
unsigned int FileLength; unsigned int FileLength;
}; };
struct // Dir Entry struct // Dir Entry
{ {
unsigned int ParentOffset; unsigned int ParentOffset;
unsigned int NextOffset; unsigned int NextOffset;
}; };
unsigned int entry[ 2 ]; unsigned int entry[ 2 ];
}; };
}; };
enum enum
@ -137,7 +137,7 @@ public:
const QByteArray AddIMET( int paddingType = U8_Hdr_IMET_app ); const QByteArray AddIMET( int paddingType = U8_Hdr_IMET_app );
//ruterns a list of the names as read from the imet header //ruterns a list of the names as read from the imet header
const QStringList IMETNames(); const QStringList &IMETNames();
//set the imet names //set the imet names
//the data in the archive is not changed, but calling AddIMET() on this banner will use the new names //the data in the archive is not changed, but calling AddIMET() on this banner will use the new names

View File

@ -19,7 +19,6 @@ SOURCES += main.cpp \
../WiiQt/tiktmd.cpp \ ../WiiQt/tiktmd.cpp \
../WiiQt/nandbin.cpp \ ../WiiQt/nandbin.cpp \
../WiiQt/tools.cpp \ ../WiiQt/tools.cpp \
../WiiQt/savebanner.cpp \
../WiiQt/aes.c \ ../WiiQt/aes.c \
../WiiQt/sha1.c \ ../WiiQt/sha1.c \
../WiiQt/uidmap.cpp \ ../WiiQt/uidmap.cpp \
@ -28,7 +27,7 @@ SOURCES += main.cpp \
../WiiQt/settingtxtdialog.cpp \ ../WiiQt/settingtxtdialog.cpp \
../WiiQt/u8.cpp \ ../WiiQt/u8.cpp \
../WiiQt/lz77.cpp \ ../WiiQt/lz77.cpp \
../WiiQt/ash.cpp ../WiiQt/ash.cpp
HEADERS += ../WiiQt/tiktmd.h \ HEADERS += ../WiiQt/tiktmd.h \
../WiiQt/nandbin.h \ ../WiiQt/nandbin.h \
@ -40,7 +39,7 @@ HEADERS += ../WiiQt/tiktmd.h \
../WiiQt/settingtxtdialog.h \ ../WiiQt/settingtxtdialog.h \
../WiiQt/u8.h \ ../WiiQt/u8.h \
../WiiQt/lz77.h \ ../WiiQt/lz77.h \
../WiiQt/ash.h ../WiiQt/ash.h
FORMS += \ FORMS += \
../WiiQt/settingtxtdialog.ui ../WiiQt/settingtxtdialog.ui