summaryrefslogtreecommitdiffstats
path: root/private/ntos/nbt/vxd/pageable.inc
blob: 8b13b5276f81895a854c269c0c0d7e5cfff9f752 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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