home *** CD-ROM | disk | FTP | other *** search
- IFNDEF __TPINC ; under TPas, gets included by SWAP_EMS.ASM
- NAME swaplist
- TITLE Swap-device list
- PAGE 60,132
-
- ;-----------------------------------------------------------
- ; (c) Copyright 1991 Ralf Brown All Rights Reserved
- ; This file may be redistributed as a part of the complete SPAWNO package,
- ; under its distribution conditions.
- ;
- ; SPAWNO v4.00
- ; Overlaying spawnv()
- ;
- ; File: SWAPLIST.ASM provide a list of pointers to the swap-device structures
- ;
- ;-----------------------------------------------------------
-
- INCLUDE RULES.ASI
-
- Header@
- ENDIF ;ndef __TPINC
-
- ;-----------------------------------------------------------
- ; initialized data
-
- JSeg@
-
- IFNDEF __TPINC
- extrn __SPAWNO_FUNCS_XMS:WORD
- extrn __SPAWNO_FUNCS_EXT:WORD
- extrn __SPAWNO_FUNCS_DISK:WORD
- extrn __SPAWNO_FUNCS_EMS:WORD
- ENDIF
-
- ;
- ; list the swapping methods in the order in which they are to be tried
- ; terminate the list with a zero word
- ;
- public@ ___SPAWNO_PROCS
- ___SPAWNO_PROCS label word
- dw offset DGROUP:__SPAWNO_FUNCS_XMS
- dw offset DGROUP:__SPAWNO_FUNCS_EMS
- IFNDEF RBcomm
- dw offset DGROUP:__SPAWNO_FUNCS_EXT
- ENDIF
- dw offset DGROUP:__SPAWNO_FUNCS_DISK
- dw 0
-
- JSegEnd@
-
- IFNDEF __TPINC
- NOWARN OPI
- END
- ENDIF ;ndef __TPINC
-