Skip to content

Commit

Permalink
Fixed ResourceFile with updates to Kernel32
Browse files Browse the repository at this point in the history
  • Loading branch information
dahall committed Sep 13, 2023
1 parent 9f00d42 commit b580e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Windows.Forms/Resources/ResourceFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public byte[] GetResourceData(SafeResourceId name, ResourceType resourceType)
/// <summary>Gets the resource names.</summary>
/// <param name="type">The type.</param>
/// <returns></returns>
public IList<ResourceId> GetResourceNames(SafeResourceId type) => EnumResourceNamesEx(hLib, type);
public IReadOnlyList<ResourceId> GetResourceNames(SafeResourceId type) => EnumResourceNamesEx(hLib, type);

/// <summary>Gets the bitmap.</summary>
/// <param name="name">The name.</param>
Expand Down

0 comments on commit b580e8f

Please sign in to comment.