diff -r d2fccb2bbe1a -r f2446ffbf2b5 e32tools/elf2e32/source/parameterlistinterface.h --- a/e32tools/elf2e32/source/parameterlistinterface.h Fri Jun 04 13:19:09 2010 +0100 +++ b/e32tools/elf2e32/source/parameterlistinterface.h Sun Jun 13 16:27:09 2010 +0100 @@ -9,6 +9,7 @@ // Nokia Corporation - initial contribution. // // Contributors: +// Mike Kinghan, mikek@symbian.org, for Symbian Foundation, 2010 // // Description: // Implementation of the Header file for the ParameterListInterface of the elf2e32 tool @@ -43,6 +44,12 @@ EStdExe }; +enum EAsmDialect // Which dialect of arm assembly to write for the --dump option +{ + EArmas, // RVCT armas + EGas // GNU as +}; + typedef unsigned int UINT; using std::vector; @@ -278,6 +285,7 @@ virtual bool SymNamedLookup() = 0; virtual bool IsDebuggable() = 0; virtual bool IsSmpSafe() = 0; + virtual EAsmDialect AsmDialect() = 0; };