rbb 2002/12/29 14:31:45
Modified: include apr_errno.h
Log:
Add the new error codes for DSO failures.
Revision Changes Path
1.106 +5 -0 apr/include/apr_errno.h
Index: apr_errno.h
===================================================================
RCS file: /home/cvs/apr/include/apr_errno.h,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -r1.105 -r1.106
--- apr_errno.h 28 Dec 2002 20:39:49 -0000 1.105
+++ apr_errno.h 29 Dec 2002 22:31:45 -0000 1.106
@@ -226,6 +226,7 @@
* APR_EGENERAL General failure (specific information not available)
* APR_EBADIP The specified IP address is invalid
* APR_EBADMASK The specified netmask is invalid
+ * APR_ESYMNOTFOUND Could not find the requested symbol
* </PRE>
*
* <PRE>
@@ -309,6 +310,8 @@
#define APR_EBADPATH (APR_OS_START_ERROR + 24)
/** @see APR_STATUS_IS_EPATHWILD */
#define APR_EPATHWILD (APR_OS_START_ERROR + 25)
+/** @see APR_STATUS_IS_ESYMNOTFOUND */
+#define APR_ESYMNOTFOUND (APR_OS_START_ERROR + 26)
/* APR ERROR VALUE TESTS */
/**
@@ -379,6 +382,8 @@
#define APR_STATUS_IS_EBADPATH(s) ((s) == APR_EBADPATH)
/** The given path contained wildcards. */
#define APR_STATUS_IS_EPATHWILD(s) ((s) == APR_EPATHWILD)
+/** Could not find the requested symbol. */
+#define APR_STATUS_IS_ESYMNOTFOUND(s) ((s) == APR_ESYMNOTFOUND)
/* APR STATUS VALUES */
/** @see APR_STATUS_IS_INCHILD */