#ifndef TCLAEVENTS_H
#define TCLAEVENTS_H

struct EventLoopEntry
{
	struct Node node;
	void (*loopfunction)();
	long *waitmask_ptr;
};

#endif

