VirtualBox

source: vbox/trunk/src/VBox/ExtPacks/Skeleton/VBoxSkeletonMainVM.cpp@ 91339

最後變更 在這個檔案從91339是 91312,由 vboxsync 提交於 3 年 前

Main: bugref:1909: Prepared the API translation engine to using in ExtPacks and VBoxManage. Added using API translation engine in ExtPacks. Allowed VBox compilation with NLS enabled and GUI disabled. Allowed ExtPacks only compilation with NLS translation enabled.

  • 屬性 svn:eol-style 設為 native
  • 屬性 svn:keywords 設為 Author Date Id Revision
檔案大小: 5.3 KB
 
1/* $Id: VBoxSkeletonMainVM.cpp 91312 2021-09-20 11:06:57Z vboxsync $ */
2/** @file
3 * Skeleton main VM module.
4 */
5
6/*
7 * Copyright (C) 2010-2020 Oracle Corporation
8 *
9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without
12 * restriction, including without limitation the rights to use,
13 * copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following
16 * conditions:
17 *
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31
32/*********************************************************************************************************************************
33* Header Files *
34*********************************************************************************************************************************/
35#include <VBox/ExtPack/ExtPack.h>
36
37#include <iprt/errcore.h>
38#include <VBox/version.h>
39#include <VBox/vmm/cfgm.h>
40#include <iprt/string.h>
41#include <iprt/param.h>
42#include <iprt/path.h>
43
44
45/*********************************************************************************************************************************
46* Global Variables *
47*********************************************************************************************************************************/
48/** Pointer to the extension pack helpers. */
49static PCVBOXEXTPACKHLP g_pHlp;
50
51
52// /**
53// * @interface_method_impl{VBOXEXTPACKVMREG,pfnConsoleReady}
54// */
55// static DECLCALLBACK(void) vboxSkeletonExtPackVM_ConsoleReady(PCVBOXEXTPACKVMREG pThis, VBOXEXTPACK_IF_CS(IConsole) *pConsole);
56//
57// /**
58// * @interface_method_impl{VBOXEXTPACKVMREG,pfnUnload}
59// */
60// static DECLCALLBACK(void) vboxSkeletonExtPackVM_Unload(PCVBOXEXTPACKVMREG pThis);
61//
62// * @interface_method_impl{VBOXEXTPACKVMREG,pfnVMConfigureVMM}
63// */
64// static DECLCALLBACK(int) vboxSkeletonExtPackVM_VMConfigureVMM(PCVBOXEXTPACKVMREG pThis, VBOXEXTPACK_IF_CS(IConsole) *pConsole, PVM pVM);
65//
66// /**
67// * @interface_method_impl{VBOXEXTPACKVMREG,pfnVMPowerOn}
68// */
69// static DECLCALLBACK(int) vboxSkeletonExtPackVM_VMPowerOn(PCVBOXEXTPACKVMREG pThis, VBOXEXTPACK_IF_CS(IConsole) *pConsole, PVM pVM);
70//
71// /**
72// * @interface_method_impl{VBOXEXTPACKVMREG,pfnVMPowerOff}
73// */
74// static DECLCALLBACK(void) vboxSkeletonExtPackVM_VMPowerOff(PCVBOXEXTPACKVMREG pThis, VBOXEXTPACK_IF_CS(IConsole) *pConsole, PVM pVM);
75//
76// /**
77// * @interface_method_impl{VBOXEXTPACKVMREG,pfnQueryObject}
78// */
79// static DECLCALLBACK(void) vboxSkeletonExtPackVM_QueryObject(PCVBOXEXTPACKVMREG pThis, PCRTUUID pObjectId);
80
81
82static const VBOXEXTPACKVMREG g_vboxSkeletonExtPackVMReg =
83{
84 VBOXEXTPACKVMREG_VERSION,
85 /* .uVBoxFullVersion = */ VBOX_FULL_VERSION,
86 /* .pszNlsBaseName = */ NULL,
87 /* .pfnConsoleReady = */ NULL,
88 /* .pfnUnload = */ NULL,
89 /* .pfnVMConfigureVMM = */ NULL,
90 /* .pfnVMPowerOn = */ NULL,
91 /* .pfnVMPowerOff = */ NULL,
92 /* .pfnQueryObject = */ NULL,
93 /* .pfnReserved1 = */ NULL,
94 /* .pfnReserved2 = */ NULL,
95 /* .pfnReserved3 = */ NULL,
96 /* .pfnReserved4 = */ NULL,
97 /* .pfnReserved5 = */ NULL,
98 /* .pfnReserved6 = */ NULL,
99 /* .u32Reserved7 = */ 0,
100 VBOXEXTPACKVMREG_VERSION
101};
102
103
104/** @callback_method_impl{FNVBOXEXTPACKVMREGISTER} */
105extern "C" DECLEXPORT(int) VBoxExtPackVMRegister(PCVBOXEXTPACKHLP pHlp, PCVBOXEXTPACKVMREG *ppReg, PRTERRINFO pErrInfo)
106{
107 /*
108 * Check the VirtualBox version.
109 */
110 if (!VBOXEXTPACK_IS_VER_COMPAT(pHlp->u32Version, VBOXEXTPACKHLP_VERSION))
111 return RTErrInfoSetF(pErrInfo, VERR_VERSION_MISMATCH,
112 "Helper version mismatch - expected %#x got %#x",
113 VBOXEXTPACKHLP_VERSION, pHlp->u32Version);
114 if ( VBOX_FULL_VERSION_GET_MAJOR(pHlp->uVBoxFullVersion) != VBOX_VERSION_MAJOR
115 || VBOX_FULL_VERSION_GET_MINOR(pHlp->uVBoxFullVersion) != VBOX_VERSION_MINOR)
116 return RTErrInfoSetF(pErrInfo, VERR_VERSION_MISMATCH,
117 "VirtualBox version mismatch - expected %u.%u got %u.%u",
118 VBOX_VERSION_MAJOR, VBOX_VERSION_MINOR,
119 VBOX_FULL_VERSION_GET_MAJOR(pHlp->uVBoxFullVersion),
120 VBOX_FULL_VERSION_GET_MINOR(pHlp->uVBoxFullVersion));
121
122 /*
123 * We're good, save input and return the registration structure.
124 */
125 g_pHlp = pHlp;
126 *ppReg = &g_vboxSkeletonExtPackVMReg;
127
128 return VINF_SUCCESS;
129}
130
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette