mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-21 23:48:22 +08:00
2e788a8a1a
- files split into common and app-specific ones - messages from parser and finder separated - ffsEngine split into multiple classes to reduce complexity - still no image rebuild
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
/* peimage.cpp
|
|
|
|
Copyright (c) 2015, Nikolaj Schlej. All rights reserved.
|
|
This program and the accompanying materials
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
http://opensource.org/licenses/bsd-license.php.
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
*/
|
|
|
|
#include <QObject>
|
|
|
|
#include "peimage.h"
|
|
|
|
QString machineTypeToQString(UINT16 machineType)
|
|
{
|
|
switch (machineType){
|
|
case IMAGE_FILE_MACHINE_AMD64: return QObject::tr("x86-64");
|
|
case IMAGE_FILE_MACHINE_ARM: return QObject::tr("ARM");
|
|
case IMAGE_FILE_MACHINE_ARMV7: return QObject::tr("ARMv7");
|
|
case IMAGE_FILE_MACHINE_EBC: return QObject::tr("EBC");
|
|
case IMAGE_FILE_MACHINE_I386: return QObject::tr("x86");
|
|
case IMAGE_FILE_MACHINE_IA64: return QObject::tr("IA64");
|
|
case IMAGE_FILE_MACHINE_THUMB: return QObject::tr("Thumb");
|
|
default: return QObject::tr("Unknown %1h").hexarg2(machineType, 4);
|
|
}
|
|
} |