aboutsummaryrefslogtreecommitdiff
path: root/include/error_handler.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2020-05-01 01:23:21 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2020-05-01 01:23:21 -0400
commit0ab16882195aa593eace74a7a54117df364b12e7 (patch)
tree3bc9100d729c0dac9e8a07237a8f8c3a1fa433dd /include/error_handler.h
parent4a809bbcf3ff97c2e666fd3faab5e178be20ab57 (diff)
downloadspmc-0ab16882195aa593eace74a7a54117df364b12e7.tar.gz
Add SPM_ERR_NOT_IMPLEMENTED error type
Diffstat (limited to 'include/error_handler.h')
-rw-r--r--include/error_handler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/error_handler.h b/include/error_handler.h
index e58698e..eaf6420 100644
--- a/include/error_handler.h
+++ b/include/error_handler.h
@@ -17,6 +17,7 @@
#define SPM_ERR_MANIFEST_INVALID _SPM_ERR(7) // manifest file is invalid (no header)
#define SPM_ERR_MANIFEST_EMPTY _SPM_ERR(8) // manifest file has no data
#define SPM_ERR_PARSE _SPM_ERR(9) // general parsing error
+#define SPM_ERR_NOT_IMPLEMENTED _SPM_ERR(10) // not implemented (does exist on this platform)
extern int spmerrno;
extern const char *SPM_ERR_STRING[];