BREAKING CHANGE: Changed class name of NetSecApi to Secur32 so that it matches the project rule of naming the class after the DLL.

pull/10/head
David Hall 2018-08-17 07:40:15 -06:00
parent 631ea1be4a
commit 09fdb204fa
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
using System;
using System.Runtime.InteropServices;
using static Vanara.PInvoke.NetSecApi;
using static Vanara.PInvoke.Secur32;
// ReSharper disable InconsistentNaming ReSharper disable FieldCanBeMadeReadOnly.Global ReSharper disable InconsistentNaming

View File

@ -8,8 +8,8 @@ using static Vanara.PInvoke.AdvApi32;
namespace Vanara.PInvoke
{
/// <summary>Functions, enumerations and structures found in NetSecApi.dll.</summary>
public static partial class NetSecApi
/// <summary>Functions, enumerations and structures found in Secur32.dll.</summary>
public static partial class Secur32
{
/// <summary>The MSV1_0 authentication package name.</summary>
[PInvokeData("Ntsecapi.h")]