Skip to content

Commit

Permalink
Fix GUIDs
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoine Larine committed Jan 24, 2024
1 parent 19edc6d commit 18ca02d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WinAPI/NativeMethods/SetupAPI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ [In] uint Flags
/// The GUID_DEVINTERFACE_CDROM device interface class is defined for CD-ROM storage devices.
/// </summary>
/// <remarks>https://learn.microsoft.com/en-us/windows-hardware/drivers/install/guid-devinterface-cdrom</remarks>
public static readonly Guid GUID_DEVINTERFACE_CDROM = new("53f56308-b6bf-11d0-94f2-00a0c91efb8");
public static readonly Guid GUID_DEVINTERFACE_CDROM = new("53f56308-b6bf-11d0-94f2-00a0c91efb8b");

/// <summary>
/// The GUID_DEVINTERFACE_DISK device interface class is defined for hard disk storage devices.
Expand All @@ -58,7 +58,7 @@ [In] uint Flags
/// The GUID_DEVINTERFACE_FLOPPY device interface class is defined for floppy disk storage devices.
/// </summary>
/// <remarks>https://learn.microsoft.com/en-us/windows-hardware/drivers/install/guid-devinterface-floppy</remarks>
public static readonly Guid GUID_DEVINTERFACE_FLOPPY = new("53f56311-b6bf-11d0-94f2-00a0c91efb8");
public static readonly Guid GUID_DEVINTERFACE_FLOPPY = new("53f56311-b6bf-11d0-94f2-00a0c91efb8b");

/// <summary>
/// Return a list of installed devices for all device setup classes or all device interface classes.
Expand Down

0 comments on commit 18ca02d

Please sign in to comment.