xref: /reactos/base/setup/lib/utils/arcname.h (revision dc0433f0)
1 /*
2  * PROJECT:     ReactOS Setup Library
3  * LICENSE:     GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4  * PURPOSE:     ARC path to-and-from NT path resolver.
5  * COPYRIGHT:   Copyright 2017-2018 Hermes Belusca-Maito
6  */
7 
8 #pragma once
9 
10 BOOLEAN
11 ArcPathNormalize(
12     OUT PUNICODE_STRING NormalizedArcPath,
13     IN  PCWSTR ArcPath);
14 
15 BOOLEAN
16 ArcPathToNtPath(
17     OUT PUNICODE_STRING NtPath,
18     IN  PCWSTR ArcPath,
19     IN  PPARTLIST PartList OPTIONAL);
20 
21 /* EOF */
22