/************************************************************************** * DSemu: Error-returning message definitions (err.h) * * Released under the terms of the BSD Public Licence * * Imran Nazar (tf@oopsilon.com), 2004 * **************************************************************************/ #ifndef __ERR_H_ #define __ERR_H_ #define RETFAIL(str) { logvt->append(str); return 1; } #define RETPASS(str) { logvt->append(str); return 0; } #endif//__ERR_H_ /*** EOF:err.h ***********************************************************/