Return-Path: Delivered-To: apmail-httpd-apreq-dev-archive@www.apache.org Received: (qmail 47470 invoked from network); 11 Mar 2005 18:35:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 11 Mar 2005 18:35:51 -0000 Received: (qmail 36405 invoked by uid 500); 11 Mar 2005 18:35:50 -0000 Delivered-To: apmail-httpd-apreq-dev-archive@httpd.apache.org Received: (qmail 36378 invoked by uid 500); 11 Mar 2005 18:35:50 -0000 Mailing-List: contact apreq-dev-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Delivered-To: mailing list apreq-dev@httpd.apache.org Received: (qmail 36365 invoked by uid 99); 11 Mar 2005 18:35:49 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=FORGED_RCVD_HELO X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from valiant.concentric.net (HELO valiant.cnchost.com) (207.155.252.9) by apache.org (qpsmtpd/0.28) with ESMTP; Fri, 11 Mar 2005 10:35:48 -0800 Received: from rcsv650.rowe-clan.net (c-24-13-128-132.client.comcast.net [24.13.128.132]) by valiant.cnchost.com id NAA25576; Fri, 11 Mar 2005 13:35:41 -0500 (EST) [ConcentricHost SMTP Relay 1.17] Errors-To: Message-Id: <6.2.1.2.2.20050311122814.05b82040@pop3.rowe-clan.net> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Fri, 11 Mar 2005 12:31:54 -0600 To: Randy Kobes From: "William A. Rowe, Jr." Subject: Re: [multi-env] library/t/parsers.t on Win32 Cc: apreq-dev@httpd.apache.org In-Reply-To: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N At 11:19 PM 3/10/2005, Randy Kobes wrote: >int main(void) { > fn f; > f = get_fn('a'); > printf("f=%p and afn=%p\n", f, afn); > f = get_fn('b'); > printf("f=%p and bfn=%p\n", f, bfn); >} >================================================================ >one obtains >================================================================ >f=10001000 and afn=00401054 >f=1000100D and bfn=0040104E afn and bfn aren't in the dll pages, they are in the exe pages. This tells you afn and bfn are the addresses of the 'redirector'. They are lookup addesses. Did you soft-link to the dll? (Using delayimp?)