mirror of
https://github.com/reactos/reactos.git
synced 2025-07-13 07:34:20 +00:00
16 lines
399 B
C
16 lines
399 B
C
/*
|
|
* PROJECT: ReactOS Setup Library
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: MBR and GPT Partition types
|
|
* COPYRIGHT: Copyright 2018-2025 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
PCSTR
|
|
NTAPI
|
|
LookupPartitionTypeString(
|
|
_In_ PARTITION_STYLE PartitionStyle,
|
|
_In_ PVOID PartitionType);
|
|
|
|
/* EOF */
|