mirror of
https://github.com/reactos/reactos.git
synced 2025-05-30 14:39:46 +00:00
25 lines
594 B
C
25 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 */
|