diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-09-09 02:33:19 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-09-09 02:33:19 +0200 |
commit | 0dffa9a91ef47fc0ac6b96cb5e96e7e73b8018b8 (patch) | |
tree | 8e453d11902ecca74b2057c8924f1a60769f5cb9 /src/common/error.h | |
parent | 634a5029931d3a68a44cf6de9c87fd8d547fe7a7 (diff) | |
download | blogc-0dffa9a91ef47fc0ac6b96cb5e96e7e73b8018b8.tar.gz blogc-0dffa9a91ef47fc0ac6b96cb5e96e7e73b8018b8.tar.bz2 blogc-0dffa9a91ef47fc0ac6b96cb5e96e7e73b8018b8.zip |
common: added config-parser
Diffstat (limited to 'src/common/error.h')
-rw-r--r-- | src/common/error.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/error.h b/src/common/error.h index 200f9a7..2569538 100644 --- a/src/common/error.h +++ b/src/common/error.h @@ -14,6 +14,9 @@ // error handling is centralized here for the sake of simplicity :/ typedef enum { + // errors for src/common + BC_ERROR_CONFIG_PARSER = 1, + // errors for src/blogc BLOGC_ERROR_SOURCE_PARSER = 100, BLOGC_ERROR_TEMPLATE_PARSER, |