Parallel
kimk.lst
Associated article: More Memory for DOS Exec
Tags: Parallel Design
_More Memory for DOS EXEC_
by Kim Kokkonen
[LISTING ONE]
program TestExecSwap;
uses
Dos,ExecSwap; {Keep ExecSwap last}
const
SwapLoc : array[Boolean] of String[7] = ('on disk', 'in EMS');
var
Status : Word;
begin
if not InitExecSwap(HeapPtr, 'SWAP.$$$') then
WriteLn(...


