mirror of
git://git.psyc.eu/libpsyc
synced 2024-08-15 03:19:02 +00:00
added new ParseFlag
This commit is contained in:
parent
0f16d2bd59
commit
65a18a9a52
2 changed files with 3 additions and 0 deletions
|
@ -6,6 +6,7 @@ extern (C):
|
|||
|
||||
enum ParseFlag
|
||||
{
|
||||
ALL = 0
|
||||
ROUTING_ONLY = 1,
|
||||
START_AT_CONTENT = 2,
|
||||
}
|
||||
|
|
|
@ -115,6 +115,8 @@
|
|||
|
||||
typedef enum
|
||||
{
|
||||
/// Default Flag. Parse everything.
|
||||
PSYC_PARSE_ALL = 0,
|
||||
/// Parse only the header
|
||||
PSYC_PARSE_ROUTING_ONLY = 1,
|
||||
/// Parse only the content.
|
||||
|
|
Loading…
Reference in a new issue