diff options
| author | Zichuan Li <34680029+river-li@users.noreply.github.com> | 2024-08-15 18:23:43 -0400 |
|---|---|---|
| committer | Brandon Miller <brandon@vector35.com> | 2025-05-08 07:23:08 -0400 |
| commit | f07f66ba03dfeed222f419e1bae274e95cbcd2d4 (patch) | |
| tree | ac93834d248b5b2af242a9288785106bcecc354f /platform/efi/efi_resolver/include/GuidRenderer.h | |
| parent | 7f08117cfeb48a8f48d08e14cb498ee028efcef2 (diff) | |
misc: formated code and fixed several small issues
1. Fix code related to SMI handlers
2. also parse handlers registered by SxDispatch and parse them together
3. Set Progress Text properly
Diffstat (limited to 'platform/efi/efi_resolver/include/GuidRenderer.h')
| -rw-r--r-- | platform/efi/efi_resolver/include/GuidRenderer.h | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/platform/efi/efi_resolver/include/GuidRenderer.h b/platform/efi/efi_resolver/include/GuidRenderer.h index 30bd9126..e30aa880 100644 --- a/platform/efi/efi_resolver/include/GuidRenderer.h +++ b/platform/efi/efi_resolver/include/GuidRenderer.h @@ -6,16 +6,15 @@ using namespace BinaryNinja; using namespace std; -class EfiGuidRenderer : public BinaryNinja::DataRenderer { - EfiGuidRenderer() = default; +class EfiGuidRenderer : public BinaryNinja::DataRenderer +{ + EfiGuidRenderer() = default; public: - bool IsValidForData(BinaryView*, uint64_t address, Type*, - vector<pair<Type*, size_t>>&) override; + bool IsValidForData(BinaryView*, uint64_t address, Type*, vector<pair<Type*, size_t>>&) override; - vector<DisassemblyTextLine> GetLinesForData( - BinaryView*, uint64_t address, Type*, const vector<InstructionTextToken>& prefix, - size_t width, vector<pair<Type*, size_t>>&) override; + vector<DisassemblyTextLine> GetLinesForData(BinaryView*, uint64_t address, Type*, + const vector<InstructionTextToken>& prefix, size_t width, vector<pair<Type*, size_t>>&) override; - static void Register(); + static void Register(); };
\ No newline at end of file |
