summaryrefslogtreecommitdiff
path: root/src/ToolBox/superpmi/superpmi/superpmi.h
blob: ce535994a09f0363161e0a27e878f4b3668737c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//

#ifndef _SuperPMI
#define _SuperPMI

#include "errorhandling.h"

enum SPMI_TARGET_ARCHITECTURE
{
    SPMI_TARGET_ARCHITECTURE_X86,
    SPMI_TARGET_ARCHITECTURE_AMD64,
    SPMI_TARGET_ARCHITECTURE_ARM64,
    SPMI_TARGET_ARCHITECTURE_ARM
};

extern SPMI_TARGET_ARCHITECTURE SpmiTargetArchitecture;
extern void SetSuperPmiTargetArchitecture(const char* targetArchitecture);

extern const char* const g_SuperPMIUsageFirstLine;

extern const char* const g_AllFormatStringFixedPrefix;
extern const char* const g_SummaryFormatString;
extern const char* const g_AsmDiffsSummaryFormatString;

#endif