home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / IRIT / IRITS.ZIP / ALLOCATL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-05  |  777 b   |  20 lines

  1. /*****************************************************************************
  2. *   "Irit" - the 3d polygonal solid modeller.                     *
  3. *                                         *
  4. * Written by:  Gershon Elber                Ver 0.2, Mar. 1990   *
  5. ******************************************************************************
  6. * Definitions, local to module, of the dynamic allocator module.         *
  7. *****************************************************************************/
  8.  
  9. #ifndef    ALLOCATE_LH
  10. #define    ALLOCATE_LH
  11.  
  12. #define MAGIC_FREE_NUM    1234567890L     /* Used in DEBUG mode to mark free. */
  13.  
  14. #define ALLOCATE_NUM    100       /* Number of objects to allocate at once. */
  15.  
  16. static void FreePolygonList(PolygonStruct * PPoly);
  17. static void FreeVertexList(VertexStruct * VFirst);
  18.  
  19. #endif    /* ALLOCATE_LH */
  20.