/* %Z%%M% %I% %E% */

/*
 * Copyright (c) 1990, 1991, 1995 by Wayne C. Gramlich.
 * All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/* Generic heap allocator exported types: */

#ifndef HEAP_TYPES_H
#define HEAP_TYPES_H

#ifndef PORT_H
#include "port.h"
#endif

typedef void			(*Heap_void_routine)();
typedef Pointer			(*Heap_pointer_routine)();
typedef Pointer			Heap_handle;
typedef Heap_handle		(*Heap_handle_routine)();
typedef struct Heap_struct	*Heap;
typedef struct Heap_size_struct	*Heap_size;

#endif /* HEAP_TYPES_H */

