mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 03:28:25 +03:00
29 lines
687 B
C++
29 lines
687 B
C++
/*
|
|
* Copyright (c) 2020-2022, Liav A. <liavalb@hotmail.co.il>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibPartition/MBRPartitionTable.h>
|
|
|
|
namespace Partition {
|
|
|
|
struct EBRPartitionHeader;
|
|
class EBRPartitionTable : public MBRPartitionTable {
|
|
public:
|
|
~EBRPartitionTable();
|
|
|
|
static ErrorOr<NonnullOwnPtr<EBRPartitionTable>> try_to_initialize(Kernel::StorageDevice const&);
|
|
explicit EBRPartitionTable(Kernel::StorageDevice const&);
|
|
virtual bool is_valid() const override { return m_valid; };
|
|
|
|
private:
|
|
void search_extended_partition(Kernel::StorageDevice const&, MBRPartitionTable&, u64, size_t limit);
|
|
|
|
bool m_valid { false };
|
|
};
|
|
|
|
}
|