Skip to content

Commit

Permalink
Update wimlib binaries to 1.13.0-BETA5 from BETA2
Browse files Browse the repository at this point in the history
- Prepare nuget release 1.1.0
  • Loading branch information
ied206 committed Sep 5, 2018
1 parent d9735fd commit cf68e12
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions ManagedWimLib/ManagedWimLib.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
<metadata>
<id>ManagedWimLib</id>
<title>ManagedWimLib</title>
<version>1.0.0</version>
<version>1.1.0</version>
<owners>ied206</owners>
<authors>Eric Biggers, Hajin Jang</authors>
<licenseUrl>https://github.com/ied206/ManagedWimLib/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/ied206/ManagedWimLib</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>C# wrapper library for native wimlib.</description>
<summary>C# wrapper library for native wimlib.</summary>
<releaseNotes>- Inital release</releaseNotes>
<releaseNotes>- Update wimlib binaries to 1.13.0-BETA5 from 1.13.0-BETA2</releaseNotes>
<copyright>Copyright (c) 2018 Hajin Jang</copyright>
<tags>wimlib</tags>
<dependencies>
Expand Down
Binary file modified ManagedWimLib/Precompiled/x64/libwim-15.dll
Binary file not shown.
Binary file modified ManagedWimLib/Precompiled/x86/libwim-15.dll
Binary file not shown.
10 changes: 5 additions & 5 deletions ManagedWimLib/WimStruct.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class Wim : IDisposable

#region Field
public IntPtr Ptr { get; private set; }
private ManagedProgressCallback managedCallback;
private ManagedProgressCallback _managedCallback;
#endregion

#region Properties
Expand Down Expand Up @@ -873,7 +873,7 @@ public static Wim OpenWim(string wimFile, OpenFlags openFlags, ProgressCallback

return new Wim(wimPtr)
{
managedCallback = mCallback
_managedCallback = mCallback
};
}
#endregion
Expand Down Expand Up @@ -1086,12 +1086,12 @@ public void RegisterCallback(ProgressCallback callback, object userData = null)
{
if (callback != null)
{ // RegisterCallback
managedCallback = new ManagedProgressCallback(callback, userData);
NativeMethods.RegisterProgressFunction(Ptr, managedCallback.NativeFunc, IntPtr.Zero);
_managedCallback = new ManagedProgressCallback(callback, userData);
NativeMethods.RegisterProgressFunction(Ptr, _managedCallback.NativeFunc, IntPtr.Zero);
}
else
{ // Delete callback
managedCallback = null;
_managedCallback = null;
NativeMethods.RegisterProgressFunction(Ptr, null, IntPtr.Zero);
}
}
Expand Down

0 comments on commit cf68e12

Please sign in to comment.