You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
395 B
22 lines
395 B
{ OVERXMS - Loads overlays in XMS. Written by Wilbert van Leijen }
|
|
|
|
Unit OverXMS;
|
|
|
|
{$O-}
|
|
|
|
Interface
|
|
uses Overlay;
|
|
|
|
Const
|
|
ovrNoXMSDriver = -7; { No XMS driver installed }
|
|
ovrNoXMSMemory = -8; { Insufficient XMS memory available }
|
|
|
|
Procedure OvrInitXMS;
|
|
|
|
Implementation
|
|
|
|
Procedure OvrInitXMS; External;
|
|
{$L OVERXMS.OBJ}
|
|
|
|
end. { OverXMS }
|