From a101ddf55574f6c6fd75b70e708f47e6a961b3bb Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Sun, 3 Dec 2023 23:14:34 +0100 Subject: [PATCH] Add debug port type definitions --- sdk/xtdk/bltypes.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sdk/xtdk/bltypes.h b/sdk/xtdk/bltypes.h index 8f75f5a..20c33d2 100644 --- a/sdk/xtdk/bltypes.h +++ b/sdk/xtdk/bltypes.h @@ -12,11 +12,16 @@ #include +/* Debug port type definitions */ +#define XTBL_DEBUGPORT_SCREEN 1 +#define XTBL_DEBUGPORT_SERIAL 2 + /* XTLDR configuration data */ typedef struct _XTBM_CONFIGURATION { PWCHAR Default; PWCHAR Debug; + ULONG DebugPort; BOOLEAN Shell; PWCHAR Theme; ULONG Timeout;