Fixed wrong pointer passed to unlock method.

This commit is contained in:
soukoku
2015-01-03 12:58:37 -05:00
parent 844f84e259
commit d7a2bebe2a
4 changed files with 17 additions and 9 deletions

View File

@@ -29,7 +29,7 @@ namespace NTwain
/// <summary>
/// Function to unlock a previously locked memory region.
/// </summary>
/// <param name="handle">The handle from <see cref="Lock"/>.</param>
/// <param name="handle">The same handle passed <see cref="Lock"/>.</param>
void Unlock(IntPtr handle);
}
}