summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authoruid65697 <uid65697>2003-12-25 10:52:25 +0000
committeruid65697 <uid65697>2003-12-25 10:52:25 +0000
commitf1796d5998e65b13c6ba058a805618c7e7fa270e (patch)
treed824bc3a19b884431525ff577abdc064d074a83b /include
parentf575382c199495bcfb1fffadeeb2b2f105bb1142 (diff)
downloadmailutils-f1796d5998e65b13c6ba058a805618c7e7fa270e.tar.gz
mailutils-f1796d5998e65b13c6ba058a805618c7e7fa270e.tar.bz2
New error codes
Diffstat (limited to 'include')
-rw-r--r--include/mailutils/errno.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/mailutils/errno.h b/include/mailutils/errno.h
index 6b7a3662e..fc8d410be 100644
--- a/include/mailutils/errno.h
+++ b/include/mailutils/errno.h
@@ -78,6 +78,16 @@ extern "C" {
#define MU_ERR_AUTH_FAILURE (MU_ERR_BASE + 32)
/* Authentication failed */
+
+#define MU_ERR_PROCESS_NOEXEC (MU_ERR_BASE + 33)
+ /* Unable to execute subprocess */
+#define MU_ERR_PROCESS_EXITED (MU_ERR_BASE + 34)
+ /* Subprocess exited with a non-zero status */
+#define MU_ERR_PROCESS_SIGNALED (MU_ERR_BASE + 35)
+ /* Subprocess exited on signal */
+
+#define MU_ERR_PROCESS_UNKNOWN_FAILURE (MU_ERR_BASE + 36)
+ /* Unknown failure while executing subprocess */
const char *mu_errname __P((int e));
const char *mu_strerror __P((int e));

Return to:

Send suggestions and report system problems to the System administrator.