mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +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 */
|