home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frozen Fish 1: Amiga
/
FrozenFish-Apr94.iso
/
bbs
/
alib
/
d8xx
/
d812
/
ppmc.lha
/
PPMC
/
Source
/
PPMC1.2b_source.lha
/
debug.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-01-27
|
704b
|
30 lines
#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) printf(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