remove unused using (cruft from experimentation), remove unneeded enum values

This commit is contained in:
CasualPokePlayer 2022-08-29 16:36:32 -07:00
parent e198122691
commit b588212e17
1 changed files with 1 additions and 5 deletions

View File

@ -3,7 +3,6 @@
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Text;
using BizHawk.Common.StringExtensions;
@ -153,11 +152,8 @@ namespace BizHawk.Common
private enum FORMAT_MESSAGE : uint
{
ALLOCATE_BUFFER = 0x00000100,
ARGUMENT_ARRAY = 0x00002000,
FROM_HMODULE = 0x00000800,
FROM_STRING = 0x00000400,
FROM_SYSTEM = 0x00001000,
IGNORE_INSERTS = 0x00000200,
FROM_SYSTEM = 0x00001000,
}
[DllImport("kernel32.dll")]