home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / vm / src / dos / alias.asm next >
Encoding:
Assembly Source File  |  1993-12-15  |  1.0 KB  |  35 lines

  1.     page    ,132
  2.     title   alias - VM Routine Aliases
  3. ;***
  4. ;alias.asm - VM Routine Aliases
  5. ;
  6. ;       Copyright (c) 1990-1992, Microsoft Corporation.  All rights reserved.
  7. ;
  8. ;Purpose:
  9. ;       This routine aliases the routine names that we show the user to
  10. ;       the underlying ones in the VM library.
  11. ;
  12. ;       NOTE:  These routines are pascal calling so use capital letters!
  13. ;
  14. ;*******************************************************************************
  15.  
  16. ;
  17. ;       entries are all of the form:
  18. ;
  19. ;               ALIAS   <alias name> = <substitute name>
  20. ;               ie.       old name   =    new name
  21. ;
  22.  
  23.     alias   <_VFREE>        = <__VMFREEHBK>
  24.     alias   <_VHEAPINIT>    = <__VMINITIALIZE>
  25.     alias   <_VHEAPTERM>    = <__VMTERMINATE>
  26.     alias   <_VLOAD>        = <__PVMLOADHBK>
  27.     alias   <_VLOCK>        = <__PVMLOCKHBK>
  28.     alias   <_VLOCKCNT>     = <__CVMLOCKHBK>
  29.     alias   <_VMALLOC>      = <__VMALLOC>
  30.     alias   <_VREALLOC>     = <__VREALLOC>
  31.     alias   <_VUNLOCK>      = <__VMUNLOCKHBK>
  32.     alias   <_VMSIZE>       = <__CBSIZEHBK>
  33.  
  34. end
  35.