19 lines
238 B
C++
19 lines
238 B
C++
|
//
|
||
|
// Created by nigel on 23/02/23.
|
||
|
//
|
||
|
|
||
|
#include "partitionManager.h"
|
||
|
|
||
|
bool partitionManager::Validate( )
|
||
|
{
|
||
|
|
||
|
//auto* bootParams = getBPB(this, true);
|
||
|
|
||
|
//if(bootParams->OEM_id) {
|
||
|
// return true;
|
||
|
//}
|
||
|
|
||
|
return true;
|
||
|
|
||
|
}
|