//************************************
//
// Name : GrList.h
//
//************************************

//**** Data structures

struct GrNode {
  struct Node Node;
  UWORD Width;
  UWORD Height;
  UWORD UseCount;
  struct BitMap *bmap;
}; // struct GrNode


//**** Public functions

extern void InitGrList(void);
extern void FlushNodesGr(void);
extern struct GrNode *NewNodeGr(STRPTR name);
extern void FreeNodeGr(struct GrNode *grn);

//**** End of file

