Disk.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Disk/MBR.h"
4 #include "Disk/GPT.h"
5 
6 #ifdef ARCH_HOST
8 #endif
9 
10 namespace Storage::Disk
11 {
12 bool scanPartitions(Device& device);
13 
14 } // namespace Storage::Disk
bool scanPartitions(Device &device)
Definition: Partition.h:77