1
0
Fork 0
mirror of https://git.rip/DMCA_FUCKER/re3.git synced 2024-06-17 21:03:12 +00:00
re3/sdk/rwsdk/include/d3d8/rperror.h
2020-08-02 19:36:50 +03:00

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 */