mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
24 lines
594 B
C
24 lines
594 B
C
/*
|
|
* PROJECT: ReactOS Setup Library
|
|
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
|
* PURPOSE: Device utility functions
|
|
* COPYRIGHT: Copyright 2024 Hermès Bélusca-Maïto <hermes.belusca-maito@reactos.org>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* FUNCTIONS *****************************************************************/
|
|
|
|
NTSTATUS
|
|
pOpenDeviceEx(
|
|
_In_ PCWSTR DevicePath,
|
|
_Out_ PHANDLE DeviceHandle,
|
|
_In_ ACCESS_MASK DesiredAccess,
|
|
_In_ ULONG ShareAccess);
|
|
|
|
NTSTATUS
|
|
pOpenDevice(
|
|
_In_ PCWSTR DevicePath,
|
|
_Out_ PHANDLE DeviceHandle);
|
|
|
|
/* EOF */
|