home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / CODE4-4.ZIP / HDR_EXMP.ZIP / INCLUDE.ZIP / H4MEMORY.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-14  |  371 b   |  22 lines

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