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

adjusted functions for flag PARSE_BEGIN_AT_CONTENT

This commit is contained in:
Marenz 2011-04-30 15:43:00 +02:00
parent ac29663a47
commit 6463c3e9bb
3 changed files with 14 additions and 2 deletions

View file

@ -22,6 +22,7 @@ extern (C):
enum ParseFlag
{
PARSE_HEADER_ONLY = 1,
PARSE_BEGIN_AT_CONTENT = 2,
}
/**

View file

@ -23,7 +23,7 @@ typedef enum
{
PSYC_PARSE_HEADER_ONLY = 1,
/// Expects only the content part of a packet. The length of the content must fit exactly in this case
PSYC_BEGIN_PARSE_AT_CONTENT = 2,
PSYC_PARSE_BEGIN_AT_CONTENT = 2,
} psycParseFlag;
/**