mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
6f19c83b96
svn path=/branches/setup_improvements/; revision=75695
22 lines
459 B
C
22 lines
459 B
C
/*
|
|
* PROJECT: ReactOS Setup Library
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: ARC path to-and-from NT path resolver.
|
|
* COPYRIGHT: Copyright 2017-2018 Hermes Belusca-Maito
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
BOOLEAN
|
|
ArcPathNormalize(
|
|
OUT PUNICODE_STRING NormalizedArcPath,
|
|
IN PCWSTR ArcPath);
|
|
|
|
BOOLEAN
|
|
ArcPathToNtPath(
|
|
OUT PUNICODE_STRING NtPath,
|
|
IN PCWSTR ArcPath,
|
|
IN PPARTLIST PartList OPTIONAL);
|
|
|
|
/* EOF */
|