1
0
Fork 0
mirror of git://git.psyc.eu/libpsyc synced 2024-07-31 00:21:03 +00:00
libpsyc/include/psyc/render.h

42 lines
787 B
C
Raw Normal View History

2011-04-22 15:09:32 +00:00
#ifndef PSYC_RENDER_H
# define PSYC_RENDER_H
2011-04-25 21:14:22 +00:00
/**
* @file psyc/render.h
* @brief Interface for PSYC packet rendering.
*
* All rendering functions and the definitions they use are
* defined in this file.
*/
2011-04-22 09:50:13 +00:00
2011-04-25 21:14:22 +00:00
/**
* @defgroup rendering Rendering Functions
*
* This module contains all rendering functions.
* @{
*/
/**
* Return codes for psyc_render.
2011-04-25 21:14:22 +00:00
*/
typedef enum
{
//PSYC_RENDER_ERROR_ROUTING = -2,
PSYC_RENDER_ERROR = -1,
PSYC_RENDER_SUCCESS = 0,
} psycRenderRC;
2011-04-25 21:14:22 +00:00
/**
* Render a PSYC packet into a buffer.
*/
psycRenderRC psyc_render(psycPacket *packet, char *buffer, size_t buflen);
2011-04-25 21:14:22 +00:00
2011-04-26 15:23:06 +00:00
/**
* Render a PSYC list into a buffer.
*/
2011-05-03 20:54:34 +00:00
psycRenderRC psyc_renderList(psycList *list, char *buffer, size_t buflen);
2011-04-26 15:23:06 +00:00
2011-04-22 15:09:32 +00:00
#endif // PSYC_RENDER_H
2011-04-25 21:14:22 +00:00
/** @} */ // end of rendering group