Update Win32Error.Values.cs typo in identifier (#141)

ERROR_EVT_EVENT_DEFINITION_NOT_OUND to ERROR_EVT_EVENT_DEFINITION_NOT_**F**OUND (value 0x00003AB8)
pull/142/head
Jean-Bernard Pellerin 2020-06-25 14:46:18 -06:00 committed by GitHub
parent bb12636c7f
commit 88856b5a94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -8031,7 +8031,7 @@ namespace Vanara.PInvoke
public const uint ERROR_EVT_MAX_INSERTS_REACHED = 0x00003AB7;
/// <summary>The event definition could not be found for the event ID (%1).</summary>
public const uint ERROR_EVT_EVENT_DEFINITION_NOT_OUND = 0x00003AB8;
public const uint ERROR_EVT_EVENT_DEFINITION_NOT_FOUND = 0x00003AB8;
/// <summary>The locale-specific resource for the desired message is not present.</summary>
public const uint ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND = 0x00003AB9;
@ -9350,4 +9350,4 @@ namespace Vanara.PInvoke
/// <summary>A device which does not exist was specified.</summary>
public const uint ERROR_NO_SUCH_DEVICE = 433;
}
}
}