1
0
Fork 0
mirror of git://git.psyced.org/git/psyclpc synced 2024-08-15 03:20:16 +00:00
psyclpc/src/pkg-psyc.h

21 lines
379 B
C
Raw Normal View History

#ifdef USE_PSYC
2011-04-26 08:02:17 +00:00
/* pkg-psyc takes and produces PSYC packets in form
* of an array of mapping, mapping, string and string
* or int* where necessary.
*/
# define PSYC_ROUTING 0
# define PSYC_ENTITY 1
# define PSYC_METHOD 2
# define PSYC_BODY 3
# include <psyc/parser.h>
static inline void
psyc_free_parser (psycParseState *ps) {
/* if (ps) xfree((void *) ps); */
}
2011-04-26 08:02:17 +00:00
#endif