1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-08-15 03:19:02 +00:00

render: added error codes for missing method & modifier name; fixes for test tools

This commit is contained in:
tg(x) 2011-05-04 15:41:35 +02:00
parent c9402a5a42
commit e47139f059
5 changed files with 42 additions and 18 deletions

View file

@ -23,7 +23,8 @@
*/
typedef enum
{
//PSYC_RENDER_ERROR_ROUTING = -2,
PSYC_RENDER_ERROR_METHOD_MISSING = -3, ///< method missing, but data present
PSYC_RENDER_ERROR_MODIFIER_NAME_MISSING = -2, ///< modifier name missing
PSYC_RENDER_ERROR = -1,
PSYC_RENDER_SUCCESS = 0,
} psycRenderRC;