Skip to content

Commit

Permalink
Update ReadData documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
AnimatedSwine37 committed Aug 31, 2024
1 parent a89a63f commit d98bbc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FileEmulationFramework.Interfaces/IEmulatedFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public interface IEmulatedFile
/// <param name="offset">Offset of the data to be received.</param>
/// <param name="info">Additional information about the current file being processed.</param>
/// <param name="numReadBytes">Number of bytes read by the function call.</param>
/// <returns>True if the operation succeeded, else false. Return true if at least 1 byte was read.</returns>
/// <returns>True if at least one byte was read, false otherwise (this indicates the EOF has been reached).</returns>
public unsafe bool ReadData(IntPtr handle, byte* buffer, uint length, long offset, IFileInformation info, out int numReadBytes);

/// <summary>
Expand Down

0 comments on commit d98bbc5

Please sign in to comment.