mirror of
				https://github.com/halpz/re3.git
				synced 2025-11-04 15:35:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			979 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			979 B
		
	
	
	
		
			C
		
	
	
	
	
	
/***************************************************************************
 | 
						|
 *                                                                         *
 | 
						|
 * Module  : rperror.h                                                     *
 | 
						|
 *                                                                         *
 | 
						|
 * Purpose : Used to generate error codes                                  *
 | 
						|
 *                                                                         *
 | 
						|
 **************************************************************************/
 | 
						|
 | 
						|
#ifndef RPERROR_H
 | 
						|
#define RPERROR_H
 | 
						|
 | 
						|
/****************************************************************************
 | 
						|
 Includes
 | 
						|
 */
 | 
						|
 | 
						|
#include "rpplugin.h"
 | 
						|
 | 
						|
/****************************************************************************
 | 
						|
 Defines
 | 
						|
 */
 | 
						|
 | 
						|
#define RWECODE(a,b) a,
 | 
						|
 | 
						|
enum rwPLUGIN_ERRENUM
 | 
						|
{
 | 
						|
#include "rperror.def"
 | 
						|
    rwPLUGIN_ERRENUMLAST = RWFORCEENUMSIZEINT
 | 
						|
};
 | 
						|
 | 
						|
typedef enum rwPLUGIN_ERRENUM rwPLUGIN_ERRENUM;
 | 
						|
 | 
						|
#endif /* RPERROR_H */
 |