diff --git a/d/include/psyc/parse.d b/d/include/psyc/parse.d index 9b8a700..aeff7d1 100644 --- a/d/include/psyc/parse.d +++ b/d/include/psyc/parse.d @@ -6,6 +6,7 @@ extern (C): enum ParseFlag { + ALL = 0 ROUTING_ONLY = 1, START_AT_CONTENT = 2, } diff --git a/include/psyc/parse.h b/include/psyc/parse.h index 1f1dcce..8367a48 100644 --- a/include/psyc/parse.h +++ b/include/psyc/parse.h @@ -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.