B_OVREMAP in 7.00 Programmer's Guide Should Be B_OVLREMAP (63422)






This article was previously published under Q63422

SUMMARY

Page 613 of "Microsoft Basic 7.0: Programmer's Guide" (for versions 7.00 and 7.10) incorrectly refers to the B_OVREMAP routine. This routine (contained in the Basic run-time) is actually named B_OVLREMAP.

This information applies to Microsoft Basic Professional Development System (PDS) versions 7.00 and 7.10 for MS-DOS.

MORE INFORMATION

The B_OVLREMAP routine is used to remap the overlays in expanded memory after the state has changed. To use this from a Basic program, you must map the name to a usable SUB name using the ALIAS keyword in the DECLARE SUB line.

Code Example

The following code example demonstrates the use of the B_OVLREMAP routine:
   DECLARE SUB OvlReMap ALIAS "B_OVLREMAP"
   SHELL             'Do something to expanded memory in the SHELL
   CALL OvlReMap     'Remap overlays in expanded memory after SHELL
   END
				

Modification Type: Minor Last Reviewed: 1/9/2003
Keywords: KB63422