home *** CD-ROM | disk | FTP | other *** search
/ Chestnut's Multimedia Mania / MM_MANIA.ISO / midi / cmtcmu / recspace.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-28  |  419 b   |  13 lines

  1. /* recspace.c -- free space initialization module for record program */
  2.  
  3. /* this file defines the maximum allowable number of notes for phase1 */
  4. /* the number must be determined emperically because it depends upon  */
  5. /* the amount of storage that must be left around for phase2 */
  6.  
  7. /* this should leave about 2KB free */
  8.  
  9. #define MAXSPACE 49000
  10.  
  11. /* export the free space counter */
  12. long space = MAXSPACE;
  13.