18 lines
203 B
C
18 lines
203 B
C
#ifndef RAWFILE_H
|
|
#define RAWFILE_H
|
|
|
|
#include <QString>
|
|
|
|
struct RawFile
|
|
{
|
|
qint32 namePtr;
|
|
QString name;
|
|
|
|
quint32 length;
|
|
|
|
qint32 bufferPtr;
|
|
QByteArray buffer;
|
|
};
|
|
|
|
#endif // RAWFILE_H
|