summaryrefslogtreecommitdiff
path: root/include/apr_portable.h
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-08-02 20:44:43 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2001-08-02 20:44:43 +0000
commit2c7d4ecca0a76af68f9823c1807c930c399bb9ca (patch)
tree8c8eb6aacdda933f15e934fddb5c984399cae6a9 /include/apr_portable.h
parentce08826add1b7a3d8ec3f0b353ff9c5542b7033f (diff)
downloadlibapr-2c7d4ecca0a76af68f9823c1807c930c399bb9ca.tar.gz
Added the NetWare specific typedef's
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62090 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_portable.h')
-rw-r--r--include/apr_portable.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/apr_portable.h b/include/apr_portable.h
index c37ae105c..a6a3831d7 100644
--- a/include/apr_portable.h
+++ b/include/apr_portable.h
@@ -136,6 +136,18 @@ typedef struct timeval apr_os_imp_time_t;
typedef struct tm apr_os_exp_time_t;
typedef image_id apr_os_dso_handle_t;
+#elif defined(NETWARE)
+typedef int apr_os_file_t;
+typedef DIR apr_os_dir_t;
+typedef int apr_os_sock_t;
+typedef NXMutex_t apr_os_lock_t;
+typedef NXThreadId_t apr_os_thread_t;
+typedef long apr_os_proc_t;
+typedef NXKey_t apr_os_threadkey_t;
+typedef struct timeval apr_os_imp_time_t;
+typedef struct tm apr_os_exp_time_t;
+typedef void * apr_os_dso_handle_t;
+
#else
/* Any other OS should go above this one. This is the lowest common
* denominator typedefs for all UNIX-like systems. :)