Return-Path: Delivered-To: apmail-new-httpd-archive@apache.org Received: (qmail 12363 invoked by uid 500); 3 Apr 2000 21:42:37 -0000 Mailing-List: contact new-httpd-help@apache.org; run by ezmlm Precedence: bulk X-No-Archive: yes Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list new-httpd@apache.org Received: (qmail 12339 invoked from network); 3 Apr 2000 21:42:34 -0000 Message-ID: <018901bf9db5$09133b80$0a1aa8c0@jetnet.co.uk> From: "David Reid" To: References: <20000403204116.68476.qmail@locus.apache.org> Subject: Re: cvs commit: apache-2.0/src/os/win32 os.h Date: Mon, 3 Apr 2000 22:38:22 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 X-Spam-Rating: locus.apache.org 1.6.2 0/1000/N Once we're happy with the support from APR all platforms can remove the duplicate code. Has anyone tried it for Unix and AIX? I committed the AIX stuff but it'd be nice if someone with access to AIX could check and fix it! :) d. > Log: > Get APR DSO code working under Windows > > -/* Abstractions for dealing with shared object files (DLLs on Win32). > - * These are used by mod_so.c > - * ToDo: This need to be migrated to APR > - */ > - > -#define ap_os_dso_handle_t HINSTANCE > -#define ap_os_dso_init() > -#define ap_os_dso_load(l) LoadLibraryEx(l, NULL, LOAD_WITH_ALTERED_SEARCH_PATH) > -#define ap_os_dso_unload(l) FreeLibrary(l) > -#define ap_os_dso_sym(h,s) GetProcAddress(h,s) > #define ap_os_dso_error() "" /* for now */ > - > /* Other ap_os_ routines not used by this platform */ > #define ap_os_kill(pid, sig) kill(pid, sig) > > > > >