home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c161 / 1.ddi / H / H4MEMORY.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-22  |  377 b   |  20 lines

  1. /*  h4memory.h   (c)Copyright Sequiter Software Inc., 1987-1990.  All rights reserved.  
  2.  
  3.     if  first_free >= num_unit then
  4.     no space is left
  5. */
  6.  
  7. typedef struct memory_st
  8. {
  9.    int     first_free ;
  10.    int     num_unit ;
  11.    int     len_unit ;
  12.    int     add_unit ;
  13. }  MEMORY, *MEMORYPTR ;
  14.  
  15. typedef struct unit_st
  16. {
  17.    int  next ;
  18.    int  prev ;
  19. }  UNIT ;
  20.