From c099882866271f2e6b52c1fe3ce1fff6e2af93a2 Mon Sep 17 00:00:00 2001 From: Aiken Harris Date: Sat, 29 Nov 2025 23:14:30 +0100 Subject: [PATCH] Add PFN_COUNT typedef --- sdk/xtdk/xtbase.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdk/xtdk/xtbase.h b/sdk/xtdk/xtbase.h index eb6790d..96282c7 100644 --- a/sdk/xtdk/xtbase.h +++ b/sdk/xtdk/xtbase.h @@ -29,6 +29,9 @@ typedef UCHAR KRUNLEVEL, *PKRUNLEVEL; /* Spin locks synchronization mechanism */ typedef ULONG_PTR KSPIN_LOCK, *PKSPIN_LOCK; +/* Page Frame Number count */ +typedef ULONG PFN_COUNT; + /* Page Frame Number */ typedef ULONG_PTR PFN_NUMBER, *PPFN_NUMBER;