From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23446 invoked by alias); 17 Jul 2006 13:36:38 -0000 Received: (qmail 23438 invoked by uid 22791); 17 Jul 2006 13:36:38 -0000 X-Spam-Check-By: sourceware.org Received: from smtp30.hccnet.nl (HELO smtp30.hccnet.nl) (62.251.0.40) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 17 Jul 2006 13:36:35 +0000 Received: from [192.168.0.151] by smtp30.hccnet.nl via [80.100.236.49] with ESMTP for id k6HDaUaT020761 (8.13.6/2.05); Mon, 17 Jul 2006 15:36:31 +0200 (MEST) Message-ID: <44BB925E.1070206@hccnet.nl> Date: Mon, 17 Jul 2006 13:36:00 -0000 From: Erik Leunissen User-Agent: Thunderbird 1.5 (X11/20051201) MIME-Version: 1.0 To: binutils@sourceware.org Subject: Retrieving exported symbols from a dll Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2006-07/txt/msg00203.txt.bz2 I want a list of symbols that are exported from a dll (pei-i386 format). My first inclination was to look for an option to dlltool or objdump that is specifically aimed for that purpose, but did not find it. Therefore, I tend to revert to doing "objdump -x foo.dll" and scan the output using a home grown recipe. However, that is not nearly as straightforward as what I was looking for. Am I right to start from "objdump -x foo.dll", or is there something more straightforward? Thanks in advance, Erik Leunissen ==============