[INCLUDE] arc.h: CONFIGTYPE in the FILEINFORMATION structure, is actually CONFIGURATION_TYPE

This commit is contained in:
Hermès Bélusca-Maïto
2025-10-13 22:13:33 +02:00
parent 81ebd7e162
commit 21fc5cd20f

View File

@@ -217,13 +217,12 @@ typedef struct _MEMORY_DESCRIPTOR
PFN_NUMBER PageCount;
} MEMORY_DESCRIPTOR, *PMEMORY_DESCRIPTOR;
typedef int CONFIGTYPE;
typedef struct tagFILEINFORMATION
typedef struct _FILEINFORMATION
{
LARGE_INTEGER StartingAddress;
LARGE_INTEGER EndingAddress;
LARGE_INTEGER CurrentAddress;
CONFIGTYPE Type;
CONFIGURATION_TYPE Type;
ULONG FileNameLength;
UCHAR Attributes;
CHAR Filename[32];