Skip to content

Commit

Permalink
Merge pull request #162 from HDFGroup/issue-#161
Browse files Browse the repository at this point in the history
Fix for issue #161
  • Loading branch information
gheber authored Jun 28, 2019
2 parents 11919c1 + b4639b4 commit 4c0b738
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HDF5/H5Dpublic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ public static extern herr_t read
/// <param name="buf">Buffer containing the chunk read from the dataset</param>
/// <returns>Returns a non-negative value if successful; otherwise
/// returns a negative value.</returns>
[DllImport(Constants.HLDLLFileName, EntryPoint = "H5Dread_chunk",
[DllImport(Constants.DLLFileName, EntryPoint = "H5Dread_chunk",
CallingConvention = CallingConvention.Cdecl),
SuppressUnmanagedCodeSecurity, SecuritySafeCritical]
public static extern herr_t read_chunk
Expand Down Expand Up @@ -870,7 +870,7 @@ public static extern herr_t write
/// <param name="buf">Buffer containing data to be written to the file</param>
/// <returns>Returns a non-negative value if successful; otherwise
/// returns a negative value.</returns>
[DllImport(Constants.HLDLLFileName, EntryPoint = "H5Dwrite_chunk",
[DllImport(Constants.DLLFileName, EntryPoint = "H5Dwrite_chunk",
CallingConvention = CallingConvention.Cdecl),
SuppressUnmanagedCodeSecurity, SecuritySafeCritical]
public static extern herr_t write_chunk
Expand Down

0 comments on commit 4c0b738

Please sign in to comment.