toolsandutils/e32tools/elf2e32/source/pl_sym_type.h
changeset 0 83f4b4db085c
child 1 d4b442d23379
equal deleted inserted replaced
-1:000000000000 0:83f4b4db085c
       
     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 enumeration SymbolType for the elf2e32 tool
       
    15 // @internalComponent
       
    16 // @released
       
    17 // 
       
    18 //
       
    19 
       
    20 #if !defined(EA_37C067EA_9B6B_4d95_84A3_ABBE88E7AD8F__INCLUDED_)
       
    21 #define EA_37C067EA_9B6B_4d95_84A3_ABBE88E7AD8F__INCLUDED_
       
    22 
       
    23 #include <tools/elfdefs.h>
       
    24 
       
    25 enum SymbolType
       
    26 {
       
    27 	SymbolTypeNotDefined = STT_NOTYPE,
       
    28 	SymbolTypeData = STT_OBJECT,
       
    29 	SymbolTypeCode = STT_FUNC
       
    30 };
       
    31 
       
    32 
       
    33 
       
    34 
       
    35 #endif // !defined(EA_37C067EA_9B6B_4d95_84A3_ABBE88E7AD8F__INCLUDED_)