home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c065 / 1.ddi / INCLUDE.ZIP / _HEAP.INC < prev    next >
Encoding:
Text File  |  1990-06-07  |  919 b   |  22 lines

  1. ;[]-----------------------------------------------------------------[]
  2. ;|      _HEAP.INC                                                    |
  3. ;|                                                                   |
  4. ;|      Turbo-C Run Time Library        version 3.0                  |
  5. ;|                                                                   |
  6. ;|      Copyright (c) 1987, 1990 by Borland International Inc.       |
  7. ;|      All Rights Reserved.                                         |
  8. ;[]-----------------------------------------------------------------[]
  9.  
  10. ;-----------------------------------------------------------------------
  11. ; Values returned by some of the heap routines.
  12. ;-----------------------------------------------------------------------
  13. _HEAPEMPTY    EQU    1
  14. _HEAPOK        EQU    2
  15. _FREEENTRY    EQU    3
  16. _USEDENTRY    EQU    4
  17. _HEAPEND    EQU    5
  18. _HEAPCORRUPT    EQU    -1
  19. _BADNODE    EQU    -2
  20. _BADVALUE    EQU    -3
  21.  
  22.