Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed entry point of H5Iget_type_ref #175

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions HDF5/H5Ipublic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -253,10 +253,10 @@ public extern static ssize_t get_name
/// is to be retrieved</param>
/// <returns>Returns the current reference count on success, negative
/// on failure.</returns>
[DllImport(Constants.DLLFileName, EntryPoint = "H5Iget_type",
[DllImport(Constants.DLLFileName, EntryPoint = "H5Iget_type_ref",
CallingConvention = CallingConvention.Cdecl),
SuppressUnmanagedCodeSecurity, SecuritySafeCritical]
public extern static int H5Iget_type_ref(type_t type);
public extern static int get_type_ref(type_t type);

/// <summary>
/// Increments the reference count for an object.
Expand Down