1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #include "hashtbl.hxx"
35 char *cExportName
; // zu exportierende Fkt.
36 unsigned long nOrdinal
; // Nummer der zu export. Fkt.
37 bool bByName
; // NONAME anhaengen
38 bool bExport
; // exportieren oder nicht ?
44 ExportSet
*pBaseTab
; // Zugriff auf gemangelte Namen
45 ExportSet
*pIndexTab
; // Zugriff auf die Ordinals
46 char *cBName
; // Name der Datenbasis
47 char *cAPrefix
; // Prefix fuer C-Fkts.
48 char *cLibName
; // Name der zu untersuchenden Lib
49 char *cFilterName
; // Name der Filterdatei
50 char *cModName
; // Modulname
51 unsigned short nBegin
; // Nummer des ersten Exports
52 unsigned long nBaseLines
; // Line in Datenbasis
53 unsigned long nFilterLines
; // Line in FilterTabelle
54 char **pFilterLines
; // Filtertabelle
55 unsigned long nDefStart
;
56 bool bBase
; // Existenz der DatenBasis;
57 bool bAll
; // Alle Fkts exportieren
58 bool bDef
; // DefFile schreiben ( bei -E )
59 int bExportName
; // 0 - export by ordinal; 1 - export by name
62 bool CheckLibrary(char * cName
);
64 bool ReadFilter(char *);
65 bool PrintSym(char *, bool bName
= true );
67 LibDump( char *cFileName
, int bExportByName
);
70 bool SetFilter(char *cFilterName
);
71 void SetBeginExport(unsigned short nVal
){nBegin
= nVal
;}
72 void SetCExport( char* pName
);
73 bool Filter(char *pName
);
74 bool IsFromAnonymousNamespace(char *pName
);
77 static void DumpError(unsigned long nError
);
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */