diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-03-10 01:33:24 +0000 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-03-10 01:33:24 +0000 |
commit | a59d2a850211ec85b99f4366ef62481bfec706bc (patch) | |
tree | 700930371de3df26f8183b7f6061a991302bcaf4 | |
parent | 18d150353933815b007100792b628a1c080a62cb (diff) | |
download | apr-a59d2a850211ec85b99f4366ef62481bfec706bc.tar.gz |
Fixed some NetWare compiler warnings.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/0.9.x@1080096 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | misc/netware/start.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/netware/start.c b/misc/netware/start.c index 29488e3a8..06d63c11c 100644 --- a/misc/netware/start.c +++ b/misc/netware/start.c @@ -23,6 +23,17 @@ #include "apr_arch_proc_mutex.h" /* for apr_proc_mutex_unix_setup_lock() */ #include "apr_arch_internal_time.h" +/* Prototypes missing from older NDKs */ +int WSAStartupRTags(WORD wVersionRequested, + LPWSADATA lpWSAData, + rtag_t WSAStartupRTag, + rtag_t WSPSKTRTag, + rtag_t lookUpServiceBeginRTag, + rtag_t WSAEventRTag, + rtag_t WSPCPRTag); + +int WSACleanupRTag(rtag_t rTag); + /* ** Resource tag signatures for using NetWare WinSock 2. These will no longer ** be needed by anyone once the new WSAStartupWithNlmHandle() is available |