KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q63422: B_OVREMAP in 7.00 Programmer’s Guide Should Be B_OVLREMAP

Article: Q63422
Product(s): See article
Version(s): 7.00 7.10
Operating System(s): MS-DOS
Keyword(s): ENDUSER | SR# S900613-56 docerr | mspl13_basic
Last Modified: 16-JAN-1991

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.

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

THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Copyright Microsoft Corporation 1986-2002.