mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-22 07:58:22 +08:00
df03531ca7
- Intel signed section identified as EFI_FIRMWARE_CONTENTS_SIGNED GUIDed section - solved a bug with no element for "Non-UEFI data inside pad-file" message - HP postcode section renamed to Insyde postcode (found in non-HP images) - various small fixes - this is the latest release without FFSv3 support, which requires massive refactoring round and can possibly last long
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
/* uefifind.h
|
|
|
|
Copyright (c) 2014, Nikolaj Schlej. All rights reserved.
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
*/
|
|
|
|
#ifndef __UEFIFIND_H__
|
|
#define __UEFIFIND_H__
|
|
|
|
#include <QObject>
|
|
#include <QByteArray>
|
|
#include <QString>
|
|
#include <QDir>
|
|
#include <QFileInfo>
|
|
#include <QPair>
|
|
#include <QSet>
|
|
#include <QString>
|
|
#include <QUuid>
|
|
|
|
#include "../basetypes.h"
|
|
#include "../ffsengine.h"
|
|
#include "../ffs.h"
|
|
|
|
class UEFIFind : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit UEFIFind(QObject *parent = 0);
|
|
~UEFIFind();
|
|
|
|
UINT8 init(const QString & path);
|
|
UINT8 find(const UINT8 mode, const bool count, const QString & hexPattern, QString & result);
|
|
|
|
private:
|
|
UINT8 findFileRecursive(const QModelIndex index, const QString & hexPattern, const UINT8 mode, QSet<QPair<QModelIndex, QModelIndex> > & files);
|
|
QString UEFIFind::guidToQString(const UINT8* guid);
|
|
|
|
FfsEngine* ffsEngine;
|
|
TreeModel* model;
|
|
QFileInfo fileInfo;
|
|
bool initDone;
|
|
};
|
|
|
|
#endif
|