1 | /* $Id: bs3-cmn-GetModeName.c 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * BS3Kit - Bs3GetModeName
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2007-2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 | #include "bs3kit-template-header.h"
|
---|
38 |
|
---|
39 |
|
---|
40 |
|
---|
41 | #undef Bs3GetModeName
|
---|
42 | BS3_CMN_DEF(const char BS3_FAR *, Bs3GetModeName,(uint8_t bMode))
|
---|
43 | {
|
---|
44 | switch (bMode)
|
---|
45 | {
|
---|
46 | case BS3_MODE_RM: return g_szBs3ModeName_rm;
|
---|
47 | case BS3_MODE_PE16: return g_szBs3ModeName_pe16;
|
---|
48 | case BS3_MODE_PE16_32: return g_szBs3ModeName_pe16_32;
|
---|
49 | case BS3_MODE_PE16_V86: return g_szBs3ModeName_pe16_v86;
|
---|
50 | case BS3_MODE_PE32: return g_szBs3ModeName_pe32;
|
---|
51 | case BS3_MODE_PE32_16: return g_szBs3ModeName_pe32_16;
|
---|
52 | case BS3_MODE_PEV86: return g_szBs3ModeName_pev86;
|
---|
53 | case BS3_MODE_PP16: return g_szBs3ModeName_pp16;
|
---|
54 | case BS3_MODE_PP16_32: return g_szBs3ModeName_pp16_32;
|
---|
55 | case BS3_MODE_PP16_V86: return g_szBs3ModeName_pp16_v86;
|
---|
56 | case BS3_MODE_PP32: return g_szBs3ModeName_pp32;
|
---|
57 | case BS3_MODE_PP32_16: return g_szBs3ModeName_pp32_16;
|
---|
58 | case BS3_MODE_PPV86: return g_szBs3ModeName_ppv86;
|
---|
59 | case BS3_MODE_PAE16: return g_szBs3ModeName_pae16;
|
---|
60 | case BS3_MODE_PAE16_32: return g_szBs3ModeName_pae16_32;
|
---|
61 | case BS3_MODE_PAE16_V86: return g_szBs3ModeName_pae16_v86;
|
---|
62 | case BS3_MODE_PAE32: return g_szBs3ModeName_pae32;
|
---|
63 | case BS3_MODE_PAE32_16: return g_szBs3ModeName_pae32_16;
|
---|
64 | case BS3_MODE_PAEV86: return g_szBs3ModeName_paev86;
|
---|
65 | case BS3_MODE_LM16: return g_szBs3ModeName_lm16;
|
---|
66 | case BS3_MODE_LM32: return g_szBs3ModeName_lm32;
|
---|
67 | case BS3_MODE_LM64: return g_szBs3ModeName_lm64;
|
---|
68 | case BS3_MODE_INVALID: return "invalid";
|
---|
69 | default: return "unknow";
|
---|
70 | }
|
---|
71 | }
|
---|
72 |
|
---|