equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Implementation of the Class DllSymbol for the elf2e32 tool |
|
15 // @internalComponent |
|
16 // @released |
|
17 // |
|
18 // |
|
19 |
|
20 #if !defined(_PL_DLLSYMBOL_H_) |
|
21 #define _PL_DLLSYMBOL_H_ |
|
22 |
|
23 #include "elfdefs.h" |
|
24 #include "pl_symbol.h" |
|
25 |
|
26 /** |
|
27 The class DLLSymbol properties for both imported and exported symbols. |
|
28 @internalComponent |
|
29 @released |
|
30 */ |
|
31 class DllSymbol : public Symbol |
|
32 { |
|
33 |
|
34 public: |
|
35 DllSymbol(char* aName,SymbolType aType, Elf32_Sym* aElfSym, PLUINT32 aSymbolIndex); |
|
36 DllSymbol(Symbol* aSymbol, SymbolType aType, bool aAbsent); |
|
37 ~DllSymbol(); |
|
38 |
|
39 Elf32_Sym *iElfSym; |
|
40 /** |
|
41 * The index of this symbol in the symbol table(required for the hash table while |
|
42 * creating the dso). |
|
43 */ |
|
44 PLUINT32 iSymbolIndex; |
|
45 |
|
46 }; |
|
47 |
|
48 |
|
49 |
|
50 |
|
51 #endif // !defined(_PL_DLLSYMBOL_H_) |