#ifndef PPMC_DEBUG_H
#define PPMC_DEBUG_H

/*							----------------------
									debug.h

							 © 1992,1993 REELSOFT
							----------------------
*/

#include	<stdio.h>

#define	MSG_APPWIN_DEBUG		"Unable to Add an AppWindow !"
#define	MSG_MSGPORT_DEBUG		"Unable to Create the Message Port !"
#define	MSG_ANALYSE_DEBUG		"analysing file..\n"
#define	MSG_BEFORE_DEBUG		"before crunching..\n"
#define	MSG_AFTER_DEBUG			"after crunching..\n"

#ifdef	DEBUG
#	define	DEBUG_REQ(m,d)			rtEZRequest(m,"Ok",NULL,NULL,d)
#	define	DEBUG_MSG(m)			PutStr(m)
#	define	DEBUG_PRT(m,d)			Printf(m,d)
#else
#	define	DEBUG_REQ(m,d)
#	define	DEBUG_MSG(m)
#	define	DEBUG_PRT(m,d)
#endif	//	DEBUG

#endif	//	PPMC_DEBUG_H