mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-21 23:48:22 +08:00
1ac6e6a4f0
1. Fixes #158, UEFITool and UEFIFind failed to lookup pattern crossing header/body boundary 2. Fixes #159, filter out more symbols in fileanems, which are prohibited by different filesystems 3. Add more known file GUIDs 4. Add basic support for FMP images 5. Fix unaligned read in uint24ToUint32 6. Fix compilation with latest cmake requiring directory path
31 lines
844 B
C++
31 lines
844 B
C++
/* fssreport.h
|
|
|
|
Copyright (c) 2019, LongSoft. 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 FFSUTILS_H
|
|
#define FFSUTILS_H
|
|
|
|
#include <set>
|
|
|
|
#include "basetypes.h"
|
|
#include "ubytearray.h"
|
|
#include "ustring.h"
|
|
#include "treemodel.h"
|
|
|
|
namespace FfsUtils {
|
|
|
|
USTATUS findFileRecursive(TreeModel *model, const UModelIndex index, const UString & hexPattern, const UINT8 mode, std::set<std::pair<UModelIndex, UModelIndex> > & files);
|
|
|
|
};
|
|
|
|
#endif // FFSUTILS_H
|