VirtualBox

source: vbox/trunk/src/VBox/Main/include/VirtualBoxImpl.h@ 85286

Last change on this file since 85286 was 85286, checked in by vboxsync, 5 years ago

Main: Refactored the generated event code implementation as Clang 11 claims va_start() on an VBoxEventType_T may trigger undefined behaviour due to type promotion (or something to that effect), but also because that variadict approach was horrible from the start. Refactored code as a dedicated factory method for each event, removing a dependency on VBoxEventDesc in veto cases. The fireXxxxEvent functions now return a HRESULT are no longer DECLINLINE (no need to compile all of them all the time). Reusable events got a ReinitXxxxxEvent function for helping with that. The VirtualBox::CallbackEvent stuff was a horrid misdesign from the start, it could've been done with a single class carrying a VBoxEventDesc member that the i_onXxxx methods would init() with all the event specific parameters and stuff. Refactored code passes a IEvent around, as that's even easier. I've left much of the old code in place for reference, but will remove once I've had a chance to test it a bit more (still struggling building VBox on the mac). bugref:9790

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 19.8 KB
Line 
1/* $Id: VirtualBoxImpl.h 85286 2020-07-12 23:08:50Z vboxsync $ */
2/** @file
3 * VirtualBox COM class implementation
4 */
5
6/*
7 * Copyright (C) 2006-2020 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.215389.xyz. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18#ifndef MAIN_INCLUDED_VirtualBoxImpl_h
19#define MAIN_INCLUDED_VirtualBoxImpl_h
20#ifndef RT_WITHOUT_PRAGMA_ONCE
21# pragma once
22#endif
23
24#include "VirtualBoxBase.h"
25#include "objectslist.h"
26#include "VirtualBoxWrap.h"
27
28#ifdef RT_OS_WINDOWS
29# include "win/resource.h"
30#endif
31
32//#ifdef DEBUG_bird
33//# define VBOXSVC_WITH_CLIENT_WATCHER
34//#endif
35
36namespace com
37{
38 class Event;
39 class EventQueue;
40}
41
42class SessionMachine;
43class GuestOSType;
44class Progress;
45class Host;
46class SystemProperties;
47class DHCPServer;
48class PerformanceCollector;
49class CloudProviderManager;
50#ifdef VBOX_WITH_EXTPACK
51class ExtPackManager;
52#endif
53class AutostartDb;
54class NATNetwork;
55#ifdef VBOX_WITH_CLOUD_NET
56class CloudNetwork;
57#endif /* VBOX_WITH_CLOUD_NET */
58
59
60typedef std::list<ComObjPtr<SessionMachine> > SessionMachinesList;
61
62#ifdef RT_OS_WINDOWS
63class SVCHlpClient;
64#endif
65
66namespace settings
67{
68 class MainConfigFile;
69 struct MediaRegistry;
70}
71
72
73#if defined(VBOX_WITH_SDS) && !defined(VBOX_WITH_XPCOM)
74class VirtualBoxClassFactory; /* See ../src-server/win/svcmain.cpp */
75#endif
76
77#ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
78struct SharedClipboardAreaData;
79#endif
80
81class ATL_NO_VTABLE VirtualBox :
82 public VirtualBoxWrap
83#ifdef RT_OS_WINDOWS
84 , public ATL::CComCoClass<VirtualBox, &CLSID_VirtualBox>
85#endif
86{
87
88public:
89
90 typedef std::list<ComPtr<IInternalSessionControl> > InternalControlList;
91 typedef ObjectsList<Machine> MachinesOList;
92
93#if 0 /* obsoleted by AsyncEvent */
94 class CallbackEvent;
95 friend class CallbackEvent;
96#endif
97 class AsyncEvent;
98 friend class AsyncEvent;
99
100#ifndef VBOX_WITH_XPCOM
101# ifdef VBOX_WITH_SDS
102 DECLARE_CLASSFACTORY_EX(VirtualBoxClassFactory)
103# else
104 DECLARE_CLASSFACTORY_SINGLETON(VirtualBox)
105# endif
106#endif
107
108 // Do not use any ATL registry support.
109 //DECLARE_REGISTRY_RESOURCEID(IDR_VIRTUALBOX)
110
111 // Kind of redundant (VirtualBoxWrap declares itself not aggregatable and
112 // CComCoClass<VirtualBox, &CLSID_VirtualBox> as aggregatable, the former
113 // is the first inheritance), but the C++ multiple inheritance rules and
114 // the class factory in svcmain.cpp needs this to disambiguate.
115 DECLARE_NOT_AGGREGATABLE(VirtualBox)
116
117 // to postpone generation of the default ctor/dtor
118 DECLARE_EMPTY_CTOR_DTOR(VirtualBox)
119
120 HRESULT FinalConstruct();
121 void FinalRelease();
122
123 // public initializer/uninitializer for internal purposes only
124 HRESULT init();
125 HRESULT initMachines();
126 HRESULT initMedia(const Guid &uuidMachineRegistry,
127 const settings::MediaRegistry &mediaRegistry,
128 const Utf8Str &strMachineFolder);
129 void uninit();
130
131 // public methods only for internal purposes
132
133 /**
134 * Override of the default locking class to be used for validating lock
135 * order with the standard member lock handle.
136 */
137 virtual VBoxLockingClass getLockingClass() const
138 {
139 return LOCKCLASS_VIRTUALBOXOBJECT;
140 }
141
142#ifdef DEBUG
143 void i_dumpAllBackRefs();
144#endif
145
146 HRESULT i_postEvent(Event *event);
147
148 HRESULT i_addProgress(IProgress *aProgress);
149 HRESULT i_removeProgress(IN_GUID aId);
150
151#ifdef RT_OS_WINDOWS
152 typedef DECLCALLBACKPTR(HRESULT, SVCHelperClientFunc,(SVCHlpClient *aClient, Progress *aProgress, void *aUser, int *aVrc));
153 HRESULT i_startSVCHelperClient(bool aPrivileged,
154 SVCHelperClientFunc aFunc,
155 void *aUser, Progress *aProgress);
156#endif
157
158 void i_addProcessToReap(RTPROCESS pid);
159 void i_updateClientWatcher();
160
161 int i_loadVDPlugin(const char *pszPluginLibrary);
162 int i_unloadVDPlugin(const char *pszPluginLibrary);
163
164 void i_onMediumRegistered(const Guid &aMediumId, const DeviceType_T aDevType, const BOOL aRegistered);
165 void i_onMediumConfigChanged(IMedium *aMedium);
166 void i_onMediumChanged(IMediumAttachment* aMediumAttachment);
167 void i_onStorageControllerChanged(const Guid &aMachineId, const com::Utf8Str &aControllerName);
168 void i_onStorageDeviceChanged(IMediumAttachment* aStorageDevice, const BOOL fRemoved, const BOOL fSilent);
169 void i_onMachineStateChange(const Guid &aId, MachineState_T aState);
170 void i_onMachineDataChange(const Guid &aId, BOOL aTemporary = FALSE);
171 BOOL i_onExtraDataCanChange(const Guid &aId, IN_BSTR aKey, IN_BSTR aValue,
172 Bstr &aError);
173 void i_onExtraDataChange(const Guid &aId, IN_BSTR aKey, IN_BSTR aValue);
174 void i_onMachineRegistered(const Guid &aId, BOOL aRegistered);
175 void i_onSessionStateChange(const Guid &aId, SessionState_T aState);
176
177 void i_onSnapshotTaken(const Guid &aMachineId, const Guid &aSnapshotId);
178 void i_onSnapshotDeleted(const Guid &aMachineId, const Guid &aSnapshotId);
179 void i_onSnapshotRestored(const Guid &aMachineId, const Guid &aSnapshotId);
180 void i_onSnapshotChange(const Guid &aMachineId, const Guid &aSnapshotId);
181
182#ifdef VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS
183 int i_clipboardAreaCreate(ULONG uAreaID, uint32_t fFlags, SharedClipboardAreaData **ppAreaData);
184 int i_clipboardAreaDestroy(SharedClipboardAreaData *pAreaData);
185
186 HRESULT i_onClipboardAreaRegister(const std::vector<com::Utf8Str> &aParms, ULONG *aID);
187 HRESULT i_onClipboardAreaUnregister(ULONG aID);
188 HRESULT i_onClipboardAreaAttach(ULONG aID);
189 HRESULT i_onClipboardAreaDetach(ULONG aID);
190 ULONG i_onClipboardAreaGetMostRecent(void);
191 ULONG i_onClipboardAreaGetRefCount(ULONG aID);
192#endif /* VBOX_WITH_SHARED_CLIPBOARD_TRANSFERS */
193
194 void i_onGuestPropertyChange(const Guid &aMachineId, IN_BSTR aName, IN_BSTR aValue,
195 IN_BSTR aFlags);
196 void i_onNatRedirectChange(const Guid &aMachineId, ULONG ulSlot, bool fRemove, IN_BSTR aName,
197 NATProtocol_T aProto, IN_BSTR aHostIp, uint16_t aHostPort,
198 IN_BSTR aGuestIp, uint16_t aGuestPort);
199 void i_onNATNetworkChange(IN_BSTR aNetworkName);
200 void i_onNATNetworkStartStop(IN_BSTR aNetworkName, BOOL aStart);
201 void i_onNATNetworkSetting(IN_BSTR aNetworkName, BOOL aEnabled, IN_BSTR aNetwork,
202 IN_BSTR aGateway, BOOL aAdvertiseDefaultIpv6RouteEnabled,
203 BOOL fNeedDhcpServer);
204 void i_onNATNetworkPortForward(IN_BSTR aNetworkName, BOOL create, BOOL fIpv6,
205 IN_BSTR aRuleName, NATProtocol_T proto,
206 IN_BSTR aHostIp, LONG aHostPort,
207 IN_BSTR aGuestIp, LONG aGuestPort);
208 void i_onHostNameResolutionConfigurationChange();
209
210 int i_natNetworkRefInc(const Utf8Str &aNetworkName);
211 int i_natNetworkRefDec(const Utf8Str &aNetworkName);
212
213#ifdef VBOX_WITH_CLOUD_NET
214 HRESULT i_findCloudNetworkByName(const com::Utf8Str &aNetworkName,
215 ComObjPtr<CloudNetwork> *aNetwork = NULL);
216 HRESULT i_getEventSource(ComPtr<IEventSource>& aSource);
217#endif /* VBOX_WITH_CLOUD_NET */
218
219 ComObjPtr<GuestOSType> i_getUnknownOSType();
220
221 void i_getOpenedMachines(SessionMachinesList &aMachines,
222 InternalControlList *aControls = NULL);
223 MachinesOList &i_getMachinesList();
224
225 HRESULT i_findMachine(const Guid &aId,
226 bool fPermitInaccessible,
227 bool aSetError,
228 ComObjPtr<Machine> *aMachine = NULL);
229
230 HRESULT i_findMachineByName(const Utf8Str &aName,
231 bool aSetError,
232 ComObjPtr<Machine> *aMachine = NULL);
233
234 HRESULT i_validateMachineGroup(const com::Utf8Str &aGroup, bool fPrimary);
235 HRESULT i_convertMachineGroups(const std::vector<com::Utf8Str> aMachineGroups, StringsList *pllMachineGroups);
236
237 HRESULT i_findHardDiskById(const Guid &id,
238 bool aSetError,
239 ComObjPtr<Medium> *aHardDisk = NULL);
240 HRESULT i_findHardDiskByLocation(const Utf8Str &strLocation,
241 bool aSetError,
242 ComObjPtr<Medium> *aHardDisk = NULL);
243 HRESULT i_findDVDOrFloppyImage(DeviceType_T mediumType,
244 const Guid *aId,
245 const Utf8Str &aLocation,
246 bool aSetError,
247 ComObjPtr<Medium> *aImage = NULL);
248 HRESULT i_findRemoveableMedium(DeviceType_T mediumType,
249 const Guid &uuid,
250 bool fRefresh,
251 bool aSetError,
252 ComObjPtr<Medium> &pMedium);
253
254 HRESULT i_findGuestOSType(const Utf8Str &strOSType,
255 ComObjPtr<GuestOSType> &guestOSType);
256
257 const Guid &i_getGlobalRegistryId() const;
258
259 const ComObjPtr<Host> &i_host() const;
260 SystemProperties *i_getSystemProperties() const;
261 CloudProviderManager *i_getCloudProviderManager() const;
262#ifdef VBOX_WITH_EXTPACK
263 ExtPackManager *i_getExtPackManager() const;
264#endif
265#ifdef VBOX_WITH_RESOURCE_USAGE_API
266 const ComObjPtr<PerformanceCollector> &i_performanceCollector() const;
267#endif /* VBOX_WITH_RESOURCE_USAGE_API */
268
269 void i_getDefaultMachineFolder(Utf8Str &str) const;
270 void i_getDefaultHardDiskFormat(Utf8Str &str) const;
271
272 /** Returns the VirtualBox home directory */
273 const Utf8Str &i_homeDir() const;
274 int i_calculateFullPath(const Utf8Str &strPath, Utf8Str &aResult);
275 void i_copyPathRelativeToConfig(const Utf8Str &strSource, Utf8Str &strTarget);
276 HRESULT i_registerMedium(const ComObjPtr<Medium> &pMedium, ComObjPtr<Medium> *ppMedium,
277 AutoWriteLock &mediaTreeLock);
278 HRESULT i_unregisterMedium(Medium *pMedium);
279 void i_pushMediumToListWithChildren(MediaList &llMedia, Medium *pMedium);
280 HRESULT i_unregisterMachineMedia(const Guid &id);
281 HRESULT i_unregisterMachine(Machine *pMachine, const Guid &id);
282 void i_rememberMachineNameChangeForMedia(const Utf8Str &strOldConfigDir,
283 const Utf8Str &strNewConfigDir);
284 void i_saveMediaRegistry(settings::MediaRegistry &mediaRegistry,
285 const Guid &uuidRegistry,
286 const Utf8Str &strMachineFolder);
287 HRESULT i_saveSettings();
288 void i_markRegistryModified(const Guid &uuid);
289 void i_unmarkRegistryModified(const Guid &uuid);
290 void i_saveModifiedRegistries();
291 static const com::Utf8Str &i_getVersionNormalized();
292 static HRESULT i_ensureFilePathExists(const Utf8Str &strFileName, bool fCreate);
293 const Utf8Str& i_settingsFilePath();
294 AutostartDb* i_getAutostartDb() const;
295 RWLockHandle& i_getMachinesListLockHandle();
296 RWLockHandle& i_getMediaTreeLockHandle();
297 int i_encryptSetting(const Utf8Str &aPlaintext, Utf8Str *aCiphertext);
298 int i_decryptSetting(Utf8Str *aPlaintext, const Utf8Str &aCiphertext);
299 void i_storeSettingsKey(const Utf8Str &aKey);
300 bool i_isMediaUuidInUse(const Guid &aId, DeviceType_T deviceType);
301
302
303
304private:
305 class ClientWatcher;
306
307 // wrapped IVirtualBox properties
308 HRESULT getVersion(com::Utf8Str &aVersion);
309 HRESULT getVersionNormalized(com::Utf8Str &aVersionNormalized);
310 HRESULT getRevision(ULONG *aRevision);
311 HRESULT getPackageType(com::Utf8Str &aPackageType);
312 HRESULT getAPIVersion(com::Utf8Str &aAPIVersion);
313 HRESULT getAPIRevision(LONG64 *aAPIRevision);
314 HRESULT getHomeFolder(com::Utf8Str &aHomeFolder);
315 HRESULT getSettingsFilePath(com::Utf8Str &aSettingsFilePath);
316 HRESULT getHost(ComPtr<IHost> &aHost);
317 HRESULT getSystemProperties(ComPtr<ISystemProperties> &aSystemProperties);
318 HRESULT getMachines(std::vector<ComPtr<IMachine> > &aMachines);
319 HRESULT getMachineGroups(std::vector<com::Utf8Str> &aMachineGroups);
320 HRESULT getHardDisks(std::vector<ComPtr<IMedium> > &aHardDisks);
321 HRESULT getDVDImages(std::vector<ComPtr<IMedium> > &aDVDImages);
322 HRESULT getFloppyImages(std::vector<ComPtr<IMedium> > &aFloppyImages);
323 HRESULT getProgressOperations(std::vector<ComPtr<IProgress> > &aProgressOperations);
324 HRESULT getGuestOSTypes(std::vector<ComPtr<IGuestOSType> > &aGuestOSTypes);
325 HRESULT getSharedFolders(std::vector<ComPtr<ISharedFolder> > &aSharedFolders);
326 HRESULT getPerformanceCollector(ComPtr<IPerformanceCollector> &aPerformanceCollector);
327 HRESULT getDHCPServers(std::vector<ComPtr<IDHCPServer> > &aDHCPServers);
328 HRESULT getNATNetworks(std::vector<ComPtr<INATNetwork> > &aNATNetworks);
329 HRESULT getEventSource(ComPtr<IEventSource> &aEventSource);
330 HRESULT getExtensionPackManager(ComPtr<IExtPackManager> &aExtensionPackManager);
331 HRESULT getInternalNetworks(std::vector<com::Utf8Str> &aInternalNetworks);
332 HRESULT getGenericNetworkDrivers(std::vector<com::Utf8Str> &aGenericNetworkDrivers);
333 HRESULT getCloudNetworks(std::vector<ComPtr<ICloudNetwork> > &aCloudNetworks);
334 HRESULT getCloudProviderManager(ComPtr<ICloudProviderManager> &aCloudProviderManager);
335
336 // wrapped IVirtualBox methods
337 HRESULT composeMachineFilename(const com::Utf8Str &aName,
338 const com::Utf8Str &aGroup,
339 const com::Utf8Str &aCreateFlags,
340 const com::Utf8Str &aBaseFolder,
341 com::Utf8Str &aFile);
342 HRESULT createMachine(const com::Utf8Str &aSettingsFile,
343 const com::Utf8Str &aName,
344 const std::vector<com::Utf8Str> &aGroups,
345 const com::Utf8Str &aOsTypeId,
346 const com::Utf8Str &aFlags,
347 ComPtr<IMachine> &aMachine);
348 HRESULT openMachine(const com::Utf8Str &aSettingsFile,
349 ComPtr<IMachine> &aMachine);
350 HRESULT registerMachine(const ComPtr<IMachine> &aMachine);
351 HRESULT findMachine(const com::Utf8Str &aNameOrId,
352 ComPtr<IMachine> &aMachine);
353 HRESULT getMachinesByGroups(const std::vector<com::Utf8Str> &aGroups,
354 std::vector<ComPtr<IMachine> > &aMachines);
355 HRESULT getMachineStates(const std::vector<ComPtr<IMachine> > &aMachines,
356 std::vector<MachineState_T> &aStates);
357 HRESULT createAppliance(ComPtr<IAppliance> &aAppliance);
358 HRESULT createUnattendedInstaller(ComPtr<IUnattended> &aUnattended);
359 HRESULT createMedium(const com::Utf8Str &aFormat,
360 const com::Utf8Str &aLocation,
361 AccessMode_T aAccessMode,
362 DeviceType_T aDeviceType,
363 ComPtr<IMedium> &aMedium);
364 HRESULT openMedium(const com::Utf8Str &aLocation,
365 DeviceType_T aDeviceType,
366 AccessMode_T aAccessMode,
367 BOOL aForceNewUuid,
368 ComPtr<IMedium> &aMedium);
369 HRESULT getGuestOSType(const com::Utf8Str &aId,
370 ComPtr<IGuestOSType> &aType);
371 HRESULT createSharedFolder(const com::Utf8Str &aName,
372 const com::Utf8Str &aHostPath,
373 BOOL aWritable,
374 BOOL aAutomount,
375 const com::Utf8Str &aAutoMountPoint);
376 HRESULT removeSharedFolder(const com::Utf8Str &aName);
377 HRESULT getExtraDataKeys(std::vector<com::Utf8Str> &aKeys);
378 HRESULT getExtraData(const com::Utf8Str &aKey,
379 com::Utf8Str &aValue);
380 HRESULT setExtraData(const com::Utf8Str &aKey,
381 const com::Utf8Str &aValue);
382 HRESULT setSettingsSecret(const com::Utf8Str &aPassword);
383 HRESULT createDHCPServer(const com::Utf8Str &aName,
384 ComPtr<IDHCPServer> &aServer);
385 HRESULT findDHCPServerByNetworkName(const com::Utf8Str &aName,
386 ComPtr<IDHCPServer> &aServer);
387 HRESULT removeDHCPServer(const ComPtr<IDHCPServer> &aServer);
388 HRESULT createNATNetwork(const com::Utf8Str &aNetworkName,
389 ComPtr<INATNetwork> &aNetwork);
390 HRESULT findNATNetworkByName(const com::Utf8Str &aNetworkName,
391 ComPtr<INATNetwork> &aNetwork);
392 HRESULT removeNATNetwork(const ComPtr<INATNetwork> &aNetwork);
393 HRESULT createCloudNetwork(const com::Utf8Str &aNetworkName,
394 ComPtr<ICloudNetwork> &aNetwork);
395 HRESULT findCloudNetworkByName(const com::Utf8Str &aNetworkName,
396 ComPtr<ICloudNetwork> &aNetwork);
397 HRESULT removeCloudNetwork(const ComPtr<ICloudNetwork> &aNetwork);
398 HRESULT checkFirmwarePresent(FirmwareType_T aFirmwareType,
399 const com::Utf8Str &aVersion,
400 com::Utf8Str &aUrl,
401 com::Utf8Str &aFile,
402 BOOL *aResult);
403
404 static HRESULT i_setErrorStaticBoth(HRESULT aResultCode, int vrc, const Utf8Str &aText)
405 {
406 return setErrorInternal(aResultCode, getStaticClassIID(), getStaticComponentName(), aText, false, true, vrc);
407 }
408
409 HRESULT i_registerMachine(Machine *aMachine);
410 HRESULT i_registerDHCPServer(DHCPServer *aDHCPServer,
411 bool aSaveRegistry = true);
412 HRESULT i_unregisterDHCPServer(DHCPServer *aDHCPServer);
413 HRESULT i_registerNATNetwork(NATNetwork *aNATNetwork,
414 bool aSaveRegistry = true);
415 HRESULT i_unregisterNATNetwork(NATNetwork *aNATNetwork,
416 bool aSaveRegistry = true);
417 HRESULT i_checkMediaForConflicts(const Guid &aId,
418 const Utf8Str &aLocation,
419 Utf8Str &aConflictType,
420 ComObjPtr<Medium> *pDupMedium);
421 int i_decryptSettings();
422 int i_decryptMediumSettings(Medium *pMedium);
423 int i_decryptSettingBytes(uint8_t *aPlaintext,
424 const uint8_t *aCiphertext,
425 size_t aCiphertextSize) const;
426 int i_encryptSettingBytes(const uint8_t *aPlaintext,
427 uint8_t *aCiphertext,
428 size_t aPlaintextSize,
429 size_t aCiphertextSize) const;
430 void i_reportDriverVersions(void);
431
432 struct Data; // opaque data structure, defined in VirtualBoxImpl.cpp
433
434 Data *m;
435
436 /* static variables (defined in VirtualBoxImpl.cpp) */
437 static com::Utf8Str sVersion;
438 static com::Utf8Str sVersionNormalized;
439 static ULONG sRevision;
440 static com::Utf8Str sPackageType;
441 static com::Utf8Str sAPIVersion;
442 static std::map<com::Utf8Str, int> sNatNetworkNameToRefCount;
443 static RWLockHandle* spMtxNatNetworkNameToRefCountLock;
444
445 static DECLCALLBACK(int) AsyncEventHandler(RTTHREAD thread, void *pvUser);
446
447#ifdef RT_OS_WINDOWS
448 friend class StartSVCHelperClientData;
449 static void i_SVCHelperClientThreadTask(StartSVCHelperClientData *pTask);
450#endif
451
452#if defined(RT_OS_WINDOWS) && defined(VBOXSVC_WITH_CLIENT_WATCHER)
453protected:
454 void i_callHook(const char *a_pszFunction) RT_OVERRIDE;
455 bool i_watchClientProcess(RTPROCESS a_pidClient, const char *a_pszFunction);
456public:
457 static void i_logCaller(const char *a_pszFormat, ...);
458private:
459
460#endif
461};
462
463////////////////////////////////////////////////////////////////////////////////
464
465#endif /* !MAIN_INCLUDED_VirtualBoxImpl_h */
466
Note: See TracBrowser for help on using the repository browser.

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