Initial bit maps support

This commit is contained in:
2024-03-12 19:15:02 +01:00
parent 3a86ab1424
commit c3831f82e7
5 changed files with 204 additions and 0 deletions

View File

@@ -69,6 +69,13 @@ typedef enum _RTL_VARIABLE_TYPE
WideString
} RTL_VARIABLE_TYPE, *PRTL_VARIABLE_TYPE;
/* Bit Map structure definition */
typedef struct _RTL_BITMAP
{
ULONG Size;
PULONG_PTR Buffer;
} RTL_BITMAP, *PRTL_BITMAP;
/* Runtime Library print context structure definition */
typedef struct _RTL_PRINT_CONTEXT
{