home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- * "Irit" - the 3d polygonal solid modeller. *
- * *
- * Written by: Gershon Elber Ver 0.2, Mar. 1990 *
- ******************************************************************************
- * Definitions, local to module, of the dynamic allocator module. *
- *****************************************************************************/
-
- #ifndef ALLOCATE_LH
- #define ALLOCATE_LH
-
- #define MAGIC_FREE_NUM 1234567890L /* Used in DEBUG mode to mark free. */
-
- #define ALLOCATE_NUM 100 /* Number of objects to allocate at once. */
-
- static void FreePolygonList(PolygonStruct * PPoly);
- static void FreeVertexList(VertexStruct * VFirst);
-
- #endif /* ALLOCATE_LH */
-