home *** CD-ROM | disk | FTP | other *** search
- page ,132
- title alias - VM Routine Aliases
- ;***
- ;alias.asm - VM Routine Aliases
- ;
- ; Copyright (c) 1990-1992, Microsoft Corporation. All rights reserved.
- ;
- ;Purpose:
- ; This routine aliases the routine names that we show the user to
- ; the underlying ones in the VM library.
- ;
- ; NOTE: These routines are pascal calling so use capital letters!
- ;
- ;*******************************************************************************
-
- ;
- ; entries are all of the form:
- ;
- ; ALIAS <alias name> = <substitute name>
- ; ie. old name = new name
- ;
-
- alias <_VFREE> = <__VMFREEHBK>
- alias <_VHEAPINIT> = <__VMINITIALIZE>
- alias <_VHEAPTERM> = <__VMTERMINATE>
- alias <_VLOAD> = <__PVMLOADHBK>
- alias <_VLOCK> = <__PVMLOCKHBK>
- alias <_VLOCKCNT> = <__CVMLOCKHBK>
- alias <_VMALLOC> = <__VMALLOC>
- alias <_VREALLOC> = <__VREALLOC>
- alias <_VUNLOCK> = <__VMUNLOCKHBK>
- alias <_VMSIZE> = <__CBSIZEHBK>
-
- end
-