Add DOUBLE_ULONG_PTR structure definition
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 33s
Builds / ExectOS (amd64, debug) (push) Successful in 41s
Builds / ExectOS (i686, debug) (push) Successful in 31s
Builds / ExectOS (i686, release) (push) Successful in 37s

This commit is contained in:
2026-06-22 14:12:49 +02:00
parent 18d36b9f23
commit 5475d970c4
2 changed files with 8 additions and 0 deletions

View File

@@ -156,6 +156,13 @@ typedef LPCUWSTR PCUTSTR, LPCUTSTR;
/* Variadic ABI types */
typedef __builtin_va_list VA_LIST, *PVA_LIST;
/* Double ULONG_PTR structure */
typedef struct _DOUBLE_ULONG_PTR
{
ULONG_PTR LowPart;
ULONG_PTR HighPart;
} DOUBLE_ULONG_PTR, *PDOUBLE_ULONG_PTR;
/* 128-bit floats structure */
typedef struct _FLOAT128
{