Reactos
at listview 21 lines 459 B view raw
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 10BOOLEAN 11ArcPathNormalize( 12 OUT PUNICODE_STRING NormalizedArcPath, 13 IN PCWSTR ArcPath); 14 15BOOLEAN 16ArcPathToNtPath( 17 OUT PUNICODE_STRING NtPath, 18 IN PCWSTR ArcPath, 19 IN PPARTLIST PartList OPTIONAL); 20 21/* EOF */