Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Interop.Windows.Kernel32
/// Indicates the type of access that a caller must request when opening the file object that represents the device (see IRP_MJ_CREATE).
/// </summary>
[Flags]
public enum IoControlCodeAccess
internal enum IoControlCodeAccess
{
/// <summary>
/// The I/O manager sends the IRP for any caller that has a handle to the file object that represents the target device object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Interop.Windows.Kernel32
/// <a href="https://docs.microsoft.com/en-us/windows-hardware/drivers/kernel/buffer-descriptions-for-i-o-control-codes">TransferType</a>.
/// Indicates how the system will pass data between the caller of DeviceIoControl (or IoBuildDeviceIoControlRequest) and the driver that handles the IRP.
/// </summary>
public enum IoControlTransferType
internal enum IoControlTransferType
{
/// <summary>
/// Specifies the buffered I/O method, which is typically used for transferring small amounts of data per request.
Expand Down
Loading