98e853d1ee
2005/09/23 02:15:24 sb 1.1.146.2: RESYNC: (1.1-1.2); FILE MERGED 2005/09/02 14:57:36 sb 1.1.146.1: #i53898# Made code warning-free.
84 lines
3.3 KiB
C++
84 lines
3.3 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: ldump.hxx,v $
|
|
*
|
|
* $Revision: 1.3 $
|
|
*
|
|
* last change: $Author: hr $ $Date: 2006-06-20 05:08:48 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
#include "hashtbl.hxx"
|
|
|
|
#define MAXFILT 200
|
|
|
|
struct LibExport
|
|
{
|
|
char *cExportName; // zu exportierende Fkt.
|
|
unsigned long nOrdinal; // Nummer der zu export. Fkt.
|
|
bool bByName; // NONAME anhaengen
|
|
bool bExport; // exportieren oder nicht ?
|
|
};
|
|
|
|
class ExportSet;
|
|
class LibDump
|
|
{
|
|
ExportSet *pBaseTab; // Zugriff auf gemangelte Namen
|
|
ExportSet *pIndexTab; // Zugriff auf die Ordinals
|
|
char *cBName; // Name der Datenbasis
|
|
char *cAPrefix; // Prefix fuer C-Fkts.
|
|
char *cLibName; // Name der zu untersuchenden Lib
|
|
char *cFilterName; // Name der Filterdatei
|
|
char *cModName; // Modulname
|
|
unsigned short nBegin; // Nummer des ersten Exports
|
|
unsigned long nBaseLines; // Line in Datenbasis
|
|
unsigned long nFilterLines; // Line in FilterTabelle
|
|
char **pFilterLines; // Filtertabelle
|
|
unsigned long nDefStart;
|
|
bool bBase; // Existenz der DatenBasis;
|
|
bool bAll; // Alle Fkts exportieren
|
|
bool bDef; // DefFile schreiben ( bei -E )
|
|
|
|
bool CheckDataBase();
|
|
bool CheckLibrary(char * cName);
|
|
bool ReadDataBase();
|
|
bool ReadFilter(char *);
|
|
bool PrintSym(char *, bool bName = true );
|
|
public:
|
|
LibDump( char *cFileName );
|
|
~LibDump();
|
|
bool Dump();
|
|
bool SetFilter(char *cFilterName);
|
|
void SetBeginExport(unsigned short nVal){nBegin = nVal;}
|
|
void SetCExport( char* pName );
|
|
bool Filter(char *pName);
|
|
bool PrintDefFile();
|
|
bool PrintDataBase();
|
|
static void DumpError(unsigned long nError);
|
|
};
|
|
|