mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 09:52:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			839 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			839 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2020, Liav A. <liavalb@hotmail.co.il>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/NonnullOwnPtr.h>
 | |
| #include <AK/RefPtr.h>
 | |
| #include <AK/Result.h>
 | |
| #include <AK/Vector.h>
 | |
| #include <Kernel/Storage/Partition/DiskPartition.h>
 | |
| #include <Kernel/Storage/Partition/MBRPartitionTable.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| struct EBRPartitionHeader;
 | |
| class EBRPartitionTable : public MBRPartitionTable {
 | |
| public:
 | |
|     ~EBRPartitionTable();
 | |
| 
 | |
|     static Result<NonnullOwnPtr<EBRPartitionTable>, PartitionTable::Error> try_to_initialize(StorageDevice const&);
 | |
|     explicit EBRPartitionTable(StorageDevice const&);
 | |
|     virtual bool is_valid() const override { return m_valid; };
 | |
| 
 | |
| private:
 | |
|     void search_extended_partition(StorageDevice const&, MBRPartitionTable&, u64, size_t limit);
 | |
| 
 | |
|     bool m_valid { false };
 | |
| };
 | |
| }
 | 
