added new ParseFlag

This commit is contained in:
Marenz 2011-05-15 21:10:27 +02:00
parent 0f16d2bd59
commit 65a18a9a52
2 changed files with 3 additions and 0 deletions

View File

@ -6,6 +6,7 @@ extern (C):
enum ParseFlag
{
ALL = 0
ROUTING_ONLY = 1,
START_AT_CONTENT = 2,
}

View File

@ -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.