#ifndef _GlobHdr_H
#define _GlobHdr_H

#define IGNORE(x) x = x;
#include "stream.h"

#define max_streams	3

#define glb_flag_callback	0x00000001

struct GlobHdr
{
	void*		pw;
	const char*	pmodname;
	unsigned int	flags;
	struct
	{
		int	inputbufsize;
		int	outputbufsize;
	} cfg;
	stream*	streamsptr[max_streams];
};

extern GlobHdr* Glb;

#endif
