You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

29 lines
1016 B
C

#if (!defined(RPPLUGIN_H))
#define RPPLUGIN_H
/*
* This is a required file for each plugin. It should be generated by the
* plugin vendor. The information contained in this file should be unique
* derived from the vendor id / name to prevent conflict with other plugins
*/
#if (defined(RWDEBUG) && !defined(RPERROR_H))
extern long _rpCollisionStackDepth;
#define RWDEBUGSTACKDEPTH _rpCollisionStackDepth
#endif /* (defined(RWDEBUG) !defined(RPERROR_H)) */
#include <rpcriter.h> /* Note: each vendor can choose their own method for
* allocation of unique ID's. This file defines
* the ID's used by Criterion.
*/
/* rwPLUGIN_ID must be defined in order to use the RenderWare debug/error
* mechanism
*/
#define rwPLUGIN_ID rwID_COLLISPLUGIN
#define rwPLUGIN_ERRFUNC _rwdb_CriterionCollis
#define rwPLUGIN_ERRENUM e_rwdb_CriterionCollis
#define rwPLUGIN_ERRENUMLAST e_rwdb_CriterionCollisLAST
#endif /* (!defined(RPPLUGIN_H)) */