home *** CD-ROM | disk | FTP | other *** search
- * test code for SWAPON and SWAPOFF in SWAP.OBJ
-
- clear screen
-
- if swapoff()
- ? 'dosswap disabled'
- else
- ? 'dosswap not installed'
- return
- endif
- ? "Try and Swap now and all you'll get is the infamous DOSSHELL beep!"
- INKEY(0)
- if swapon()
- ? 'dosswap is enabled'
- else
- ? 'dosswap not installed'
- return
- endif
- return
-
-