summaryrefslogtreecommitdiffstats
path: root/private/ntos/nbt/vxd/pageable.inc
diff options
context:
space:
mode:
Diffstat (limited to 'private/ntos/nbt/vxd/pageable.inc')
-rw-r--r--private/ntos/nbt/vxd/pageable.inc36
1 files changed, 36 insertions, 0 deletions
diff --git a/private/ntos/nbt/vxd/pageable.inc b/private/ntos/nbt/vxd/pageable.inc
new file mode 100644
index 000000000..8b13b5276
--- /dev/null
+++ b/private/ntos/nbt/vxd/pageable.inc
@@ -0,0 +1,36 @@
+;
+; Macro to define pageable code under Chicago and later
+; operating systems.
+;
+
+NBT_PAGEABLE_CODE_SEG MACRO
+
+ifdef CHICAGO
+
+VxD_PAGEABLE_CODE_SEG
+
+else
+
+VxD_CODE_SEG
+
+endif
+
+ endm
+
+
+
+
+
+NBT_PAGEABLE_CODE_ENDS MACRO
+
+ifdef CHICAGO
+
+VxD_PAGEABLE_CODE_ENDS
+
+else
+
+VxD_CODE_ENDS
+
+endif
+
+ endm