2020-11-11 01:37:16 +01:00
|
|
|
/*
|
|
|
|
* PROJECT: ReactOS Setup Library
|
2025-03-14 13:52:22 +01:00
|
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
2020-11-11 01:37:16 +01:00
|
|
|
* PURPOSE: MBR and GPT Partition types
|
2025-03-14 13:52:22 +01:00
|
|
|
* COPYRIGHT: Copyright 2018-2025 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
|
2020-11-11 01:37:16 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2025-03-14 13:52:22 +01:00
|
|
|
PCSTR
|
|
|
|
NTAPI
|
|
|
|
LookupPartitionTypeString(
|
|
|
|
_In_ PARTITION_STYLE PartitionStyle,
|
|
|
|
_In_ PVOID PartitionType);
|
2020-11-11 01:37:16 +01:00
|
|
|
|
|
|
|
/* EOF */
|