CloverBootloader/rEFIt_UEFI/Platform/Volumes.h

39 lines
809 B
C
Raw Permalink Normal View History

/*
* Volumes.h
*
* Created on: Feb 4, 2021
* Author: jief
*/
#ifndef PLATFORM_VOLUMES_H_
#define PLATFORM_VOLUMES_H_
#include "Volume.h"
extern "C" {
//#include <Library/OcConfigurationLib.h>
#include <Guid/AppleApfsInfo.h>
}
class VolumesArrayClass : public XObjArray<REFIT_VOLUME>
{
public:
2022-04-26 00:55:56 +02:00
REFIT_VOLUME* getVolumeWithApfsContainerUUIDAndFileSystemUUID(const EFI_GUID& ApfsContainerUUID, const EFI_GUID& ApfsFileSystemUUID);
/*
* Return : NULL if not found OR more than one partition with this role is found in this container
*/
2022-04-26 00:55:56 +02:00
REFIT_VOLUME* getVolumeWithApfsContainerUUIDAndRole(const EFI_GUID& ApfsContainerUUID, APPLE_APFS_VOLUME_ROLE roleMask);
};
extern VolumesArrayClass Volumes;
extern REFIT_VOLUME *SelfVolume;
#endif /* PLATFORM_VOLUMES_H_ */