Skip to content

Commit

Permalink
Address reviews.
Browse files Browse the repository at this point in the history
  • Loading branch information
mandel-macaque committed Jul 30, 2021
1 parent 2f66da4 commit accf389
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/FileProvider/Structs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,15 @@ namespace FileProvider {
public struct NSFileProviderTypeAndCreator
{
public uint Type;

public uint Creator;

#if !COREBUILD
public string GetTypeAsFourCC ()
=> Runtime.ToFourCCString (Type);

public string GetCreatorAsFourCC()
=> Runtime.ToFourCCString (Creator);
#endif
}

}
Expand Down

0 comments on commit accf389

Please sign in to comment.