mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 04:11:30 +00:00
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 */
|