VirtualBox

source: vbox/trunk/src/VBox/Main/include/ConsoleImpl.h@ 9883

Last change on this file since 9883 was 9883, checked in by vboxsync, 16 years ago

Main: add the Main part of the guest/host configuration registry

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 20.2 KB
Line 
1/** @file
2 *
3 * VBox Console COM Class definition
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. 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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22#ifndef ____H_CONSOLEIMPL
23#define ____H_CONSOLEIMPL
24
25#include "VirtualBoxBase.h"
26#include "ProgressImpl.h"
27
28class Guest;
29class Keyboard;
30class Mouse;
31class Display;
32class MachineDebugger;
33class OUSBDevice;
34class RemoteUSBDevice;
35class SharedFolder;
36class RemoteDisplayInfo;
37class AudioSniffer;
38class ConsoleVRDPServer;
39class VMMDev;
40
41#include <VBox/vrdpapi.h>
42#include <VBox/pdmdrv.h>
43
44struct VUSBIRHCONFIG;
45typedef struct VUSBIRHCONFIG *PVUSBIRHCONFIG;
46
47#include <list>
48
49// defines
50///////////////////////////////////////////////////////////////////////////////
51
52/**
53 * Checks the availability of the underlying VM device driver corresponding
54 * to the COM interface (IKeyboard, IMouse, IDisplay, etc.). When the driver is
55 * not available (NULL), sets error info and returns returns E_ACCESSDENIED.
56 * The translatable error message is defined in null context.
57 *
58 * Intended to used only within Console children (i,e. Keyboard, Mouse,
59 * Display, etc.).
60 *
61 * @param drv driver pointer to check (compare it with NULL)
62 */
63#define CHECK_CONSOLE_DRV(drv) \
64 do { \
65 if (!(drv)) \
66 return setError (E_ACCESSDENIED, tr ("The console is not powered up")); \
67 } while (0)
68
69/** @def VBOX_WITH_UNIXY_TAP_NETWORKING
70 * Unixy style TAP networking. This is defined in the Makefile since it's also
71 * used by NetworkAdapterImpl.h/cpp.
72 */
73#ifdef __DOXYGEN__
74# define VBOX_WITH_UNIXY_TAP_NETWORKING
75#endif
76
77// Console
78///////////////////////////////////////////////////////////////////////////////
79
80/** IConsole implementation class */
81class ATL_NO_VTABLE Console :
82 public VirtualBoxBaseWithChildrenNEXT,
83 public VirtualBoxSupportErrorInfoImpl <Console, IConsole>,
84 public VirtualBoxSupportTranslation <Console>,
85 public IConsole
86{
87 Q_OBJECT
88
89public:
90
91 DECLARE_NOT_AGGREGATABLE(Console)
92
93 DECLARE_PROTECT_FINAL_CONSTRUCT()
94
95 BEGIN_COM_MAP(Console)
96 COM_INTERFACE_ENTRY(ISupportErrorInfo)
97 COM_INTERFACE_ENTRY(IConsole)
98 END_COM_MAP()
99
100 NS_DECL_ISUPPORTS
101
102 Console();
103 ~Console();
104
105 HRESULT FinalConstruct();
106 void FinalRelease();
107
108 // public initializers/uninitializers for internal purposes only
109 HRESULT init (IMachine *aMachine, IInternalMachineControl *aControl);
110 void uninit();
111
112 // IConsole properties
113 STDMETHOD(COMGETTER(Machine)) (IMachine **aMachine);
114 STDMETHOD(COMGETTER(State)) (MachineState_T *aMachineState);
115 STDMETHOD(COMGETTER(Guest)) (IGuest **aGuest);
116 STDMETHOD(COMGETTER(Keyboard)) (IKeyboard **aKeyboard);
117 STDMETHOD(COMGETTER(Mouse)) (IMouse **aMouse);
118 STDMETHOD(COMGETTER(Display)) (IDisplay **aDisplay);
119 STDMETHOD(COMGETTER(Debugger)) (IMachineDebugger **aDebugger);
120 STDMETHOD(COMGETTER(USBDevices)) (IUSBDeviceCollection **aUSBDevices);
121 STDMETHOD(COMGETTER(RemoteUSBDevices)) (IHostUSBDeviceCollection **aRemoteUSBDevices);
122 STDMETHOD(COMGETTER(RemoteDisplayInfo)) (IRemoteDisplayInfo **aRemoteDisplayInfo);
123 STDMETHOD(COMGETTER(SharedFolders)) (ISharedFolderCollection **aSharedFolders);
124
125 // IConsole methods
126 STDMETHOD(PowerUp) (IProgress **aProgress);
127 STDMETHOD(PowerDown)();
128 STDMETHOD(Reset)();
129 STDMETHOD(Pause)();
130 STDMETHOD(Resume)();
131 STDMETHOD(PowerButton)();
132 STDMETHOD(SleepButton)();
133 STDMETHOD(GetPowerButtonHandled)(BOOL *aHandled);
134 STDMETHOD(SaveState) (IProgress **aProgress);
135 STDMETHOD(AdoptSavedState) (INPTR BSTR aSavedStateFile);
136 STDMETHOD(DiscardSavedState)();
137 STDMETHOD(GetDeviceActivity) (DeviceType_T aDeviceType,
138 DeviceActivity_T *aDeviceActivity);
139 STDMETHOD(AttachUSBDevice) (INPTR GUIDPARAM aId);
140 STDMETHOD(DetachUSBDevice) (INPTR GUIDPARAM aId, IUSBDevice **aDevice);
141 STDMETHOD(CreateSharedFolder) (INPTR BSTR aName, INPTR BSTR aHostPath, BOOL aWritable);
142 STDMETHOD(RemoveSharedFolder) (INPTR BSTR aName);
143 STDMETHOD(TakeSnapshot) (INPTR BSTR aName, INPTR BSTR aDescription,
144 IProgress **aProgress);
145 STDMETHOD(DiscardSnapshot) (INPTR GUIDPARAM aId, IProgress **aProgress);
146 STDMETHOD(DiscardCurrentState) (IProgress **aProgress);
147 STDMETHOD(DiscardCurrentSnapshotAndState) (IProgress **aProgress);
148 STDMETHOD(RegisterCallback) (IConsoleCallback *aCallback);
149 STDMETHOD(UnregisterCallback)(IConsoleCallback *aCallback);
150 STDMETHOD(GetConfigRegistryValue)(INPTR BSTR aKey, BSTR *aValue);
151 STDMETHOD(SetConfigRegistryValue)(INPTR BSTR aKey, INPTR BSTR aValue);
152
153 // public methods for internal purposes only
154
155 /*
156 * Note: the following methods do not increase refcount. intended to be
157 * called only by the VM execution thread.
158 */
159
160 Guest *getGuest() { return mGuest; }
161 Keyboard *getKeyboard() { return mKeyboard; }
162 Mouse *getMouse() { return mMouse; }
163 Display *getDisplay() { return mDisplay; }
164 MachineDebugger *getMachineDebugger() { return mDebugger; }
165
166 const ComPtr <IMachine> &machine() { return mMachine; }
167
168 /** Method is called only from ConsoleVRDPServer */
169 IVRDPServer *getVRDPServer() { return mVRDPServer; }
170
171 ConsoleVRDPServer *consoleVRDPServer() { return mConsoleVRDPServer; }
172
173 HRESULT updateMachineState (MachineState_T aMachineState);
174
175 // events from IInternalSessionControl
176 HRESULT onDVDDriveChange();
177 HRESULT onFloppyDriveChange();
178 HRESULT onNetworkAdapterChange (INetworkAdapter *aNetworkAdapter);
179 HRESULT onSerialPortChange (ISerialPort *aSerialPort);
180 HRESULT onParallelPortChange (IParallelPort *aParallelPort);
181 HRESULT onVRDPServerChange();
182 HRESULT onUSBControllerChange();
183 HRESULT onSharedFolderChange (BOOL aGlobal);
184 HRESULT onUSBDeviceAttach (IUSBDevice *aDevice, IVirtualBoxErrorInfo *aError, ULONG aMaskedIfs);
185 HRESULT onUSBDeviceDetach (INPTR GUIDPARAM aId, IVirtualBoxErrorInfo *aError);
186
187 VMMDev *getVMMDev() { return mVMMDev; }
188 AudioSniffer *getAudioSniffer () { return mAudioSniffer; }
189
190 int VRDPClientLogon (uint32_t u32ClientId, const char *pszUser, const char *pszPassword, const char *pszDomain);
191 void VRDPClientConnect (uint32_t u32ClientId);
192 void VRDPClientDisconnect (uint32_t u32ClientId, uint32_t fu32Intercepted);
193 void VRDPInterceptAudio (uint32_t u32ClientId);
194 void VRDPInterceptUSB (uint32_t u32ClientId, void **ppvIntercept);
195 void VRDPInterceptClipboard (uint32_t u32ClientId);
196
197 void processRemoteUSBDevices (uint32_t u32ClientId, VRDPUSBDEVICEDESC *pDevList, uint32_t cbDevList);
198
199 // callback callers (partly; for some events console callbacks are notified
200 // directly from IInternalSessionControl event handlers declared above)
201 void onMousePointerShapeChange(bool fVisible, bool fAlpha,
202 uint32_t xHot, uint32_t yHot,
203 uint32_t width, uint32_t height,
204 void *pShape);
205 void onMouseCapabilityChange (BOOL supportsAbsolute, BOOL needsHostCursor);
206 void onStateChange (MachineState_T aMachineState);
207 void onAdditionsStateChange();
208 void onAdditionsOutdated();
209 void onKeyboardLedsChange (bool fNumLock, bool fCapsLock, bool fScrollLock);
210 void onUSBDeviceStateChange (IUSBDevice *aDevice, bool aAttached,
211 IVirtualBoxErrorInfo *aError);
212 void onRuntimeError (BOOL aFatal, INPTR BSTR aErrorID, INPTR BSTR aMessage);
213 HRESULT onShowWindow (BOOL aCheck, BOOL *aCanShow, ULONG64 *aWinId);
214
215 static const PDMDRVREG DrvStatusReg;
216
217 void reportAuthLibraryError (const char *filename, int rc)
218 {
219 setError (E_FAIL, tr("Could not load the external authentication library '%s' (%Vrc)"), filename, rc);
220 }
221
222 // for VirtualBoxSupportErrorInfoImpl
223 static const wchar_t *getComponentName() { return L"Console"; }
224
225private:
226
227 /**
228 * Base template for AutoVMCaller and SaveVMPtr. Template arguments
229 * have the same meaning as arguments of Console::addVMCaller().
230 */
231 template <bool taQuiet = false, bool taAllowNullVM = false>
232 class AutoVMCallerBase
233 {
234 public:
235 AutoVMCallerBase (Console *aThat) : mThat (aThat), mRC (S_OK)
236 {
237 Assert (aThat);
238 mRC = aThat->addVMCaller (taQuiet, taAllowNullVM);
239 }
240 ~AutoVMCallerBase()
241 {
242 if (SUCCEEDED (mRC))
243 mThat->releaseVMCaller();
244 }
245 /** Decreases the number of callers before the instance is destroyed. */
246 void release()
247 {
248 AssertReturnVoid (SUCCEEDED (mRC));
249 mThat->releaseVMCaller();
250 mRC = E_FAIL;
251 }
252 /** Restores the number of callers after by #release(). #rc() must be
253 * rechecked to ensure the operation succeeded. */
254 void add()
255 {
256 AssertReturnVoid (!SUCCEEDED (mRC));
257 mRC = mThat->addVMCaller (taQuiet, taAllowNullVM);
258 }
259 /** Returns the result of Console::addVMCaller() */
260 HRESULT rc() const { return mRC; }
261 /** Shortcut to SUCCEEDED (rc()) */
262 bool isOk() const { return SUCCEEDED (mRC); }
263 protected:
264 Console *mThat;
265 HRESULT mRC;
266 private:
267 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP (AutoVMCallerBase)
268 DECLARE_CLS_NEW_DELETE_NOOP (AutoVMCallerBase)
269 };
270
271 /**
272 * Helper class that protects sections of code using the mpVM pointer by
273 * automatically calling addVMCaller() on construction and
274 * releaseVMCaller() on destruction. Intended for Console methods dealing
275 * with mpVM. The usage pattern is:
276 * <code>
277 * AutoVMCaller autoVMCaller (this);
278 * CheckComRCReturnRC (autoVMCaller.rc());
279 * ...
280 * VMR3ReqCall (mpVM, ...
281 * </code>
282 *
283 * @sa SafeVMPtr, SafeVMPtrQuiet
284 */
285 typedef AutoVMCallerBase <false, false> AutoVMCaller;
286
287 /**
288 * Same as AutoVMCaller but doesn't set extended error info on failure.
289 */
290 typedef AutoVMCallerBase <true, false> AutoVMCallerQuiet;
291
292 /**
293 * Same as AutoVMCaller but allows a null VM pointer (to trigger an error
294 * instead of assertion).
295 */
296 typedef AutoVMCallerBase <false, true> AutoVMCallerWeak;
297
298 /**
299 * Same as AutoVMCaller but doesn't set extended error info on failure
300 * and allows a null VM pointer (to trigger an error instead of
301 * assertion).
302 */
303 typedef AutoVMCallerBase <true, true> AutoVMCallerQuietWeak;
304
305 /**
306 * Base template for SaveVMPtr and SaveVMPtrQuiet.
307 */
308 template <bool taQuiet = false>
309 class SafeVMPtrBase : public AutoVMCallerBase <taQuiet, true>
310 {
311 typedef AutoVMCallerBase <taQuiet, true> Base;
312 public:
313 SafeVMPtrBase (Console *aThat) : Base (aThat), mpVM (NULL)
314 {
315 if (SUCCEEDED (Base::mRC))
316 mpVM = aThat->mpVM;
317 }
318 /** Smart SaveVMPtr to PVM cast operator */
319 operator PVM() const { return mpVM; }
320 /** Direct PVM access for printf()-like functions */
321 PVM raw() const { return mpVM; }
322 private:
323 PVM mpVM;
324 DECLARE_CLS_COPY_CTOR_ASSIGN_NOOP (SafeVMPtrBase)
325 DECLARE_CLS_NEW_DELETE_NOOP (SafeVMPtrBase)
326 };
327
328public:
329
330 /**
331 * Helper class that safely manages the Console::mpVM pointer
332 * by calling addVMCaller() on construction and releaseVMCaller() on
333 * destruction. Intended for Console children. The usage pattern is:
334 * <code>
335 * Console::SaveVMPtr pVM (mParent);
336 * CheckComRCReturnRC (pVM.rc());
337 * ...
338 * VMR3ReqCall (pVM, ...
339 * ...
340 * printf ("%p\n", pVM.raw());
341 * </code>
342 *
343 * @sa SafeVMPtrQuiet, AutoVMCaller
344 */
345 typedef SafeVMPtrBase <false> SafeVMPtr;
346
347 /**
348 * A deviation of SaveVMPtr that doesn't set the error info on failure.
349 * Intenede for pieces of code that don't need to return the VM access
350 * failure to the caller. The usage pattern is:
351 * <code>
352 * Console::SaveVMPtrQuiet pVM (mParent);
353 * if (pVM.rc())
354 * VMR3ReqCall (pVM, ...
355 * return S_OK;
356 * </code>
357 *
358 * @sa SafeVMPtr, AutoVMCaller
359 */
360 typedef SafeVMPtrBase <true> SafeVMPtrQuiet;
361
362 class SharedFolderData
363 {
364 public:
365 SharedFolderData() {}
366 SharedFolderData(Bstr aHostPath, BOOL aWritable)
367 : mHostPath (aHostPath)
368 , mWritable (aWritable) {}
369 SharedFolderData(const SharedFolderData& aThat)
370 : mHostPath (aThat.mHostPath)
371 , mWritable (aThat.mWritable) {}
372 Bstr mHostPath;
373 BOOL mWritable;
374 };
375 typedef std::map <Bstr, ComObjPtr <SharedFolder> > SharedFolderMap;
376 typedef std::map <Bstr, SharedFolderData> SharedFolderDataMap;
377
378private:
379
380 typedef std::list <ComObjPtr <OUSBDevice> > USBDeviceList;
381 typedef std::list <ComObjPtr <RemoteUSBDevice> > RemoteUSBDeviceList;
382
383 HRESULT addVMCaller (bool aQuiet = false, bool aAllowNullVM = false);
384 void releaseVMCaller();
385
386 HRESULT consoleInitReleaseLog (const ComPtr <IMachine> aMachine);
387
388 HRESULT powerDown();
389
390 HRESULT callTapSetupApplication(bool isStatic, RTFILE tapFD, Bstr &tapDevice,
391 Bstr &tapSetupApplication);
392 HRESULT attachToHostInterface(INetworkAdapter *networkAdapter);
393 HRESULT detachFromHostInterface(INetworkAdapter *networkAdapter);
394 HRESULT powerDownHostInterfaces();
395
396 HRESULT setMachineState (MachineState_T aMachineState, bool aUpdateServer = true);
397 HRESULT setMachineStateLocally (MachineState_T aMachineState)
398 {
399 return setMachineState (aMachineState, false /* aUpdateServer */);
400 }
401
402 HRESULT findSharedFolder (const BSTR aName,
403 ComObjPtr <SharedFolder> &aSharedFolder,
404 bool aSetError = false);
405
406 HRESULT fetchSharedFolders (BOOL aGlobal);
407 bool findOtherSharedFolder (INPTR BSTR aName,
408 SharedFolderDataMap::const_iterator &aIt);
409
410 HRESULT createSharedFolder (INPTR BSTR aName, SharedFolderData aData);
411 HRESULT removeSharedFolder (INPTR BSTR aName);
412
413 static DECLCALLBACK(int) configConstructor(PVM pVM, void *pvConsole);
414 static DECLCALLBACK(void) vmstateChangeCallback(PVM aVM, VMSTATE aState,
415 VMSTATE aOldState, void *aUser);
416 HRESULT doDriveChange (const char *pszDevice, unsigned uInstance,
417 unsigned uLun, DriveState_T eState,
418 DriveState_T *peState, const char *pszPath,
419 bool fPassthrough);
420 static DECLCALLBACK(int) changeDrive (Console *pThis, const char *pszDevice,
421 unsigned uInstance, unsigned uLun,
422 DriveState_T eState, DriveState_T *peState,
423 const char *pszPath, bool fPassthrough);
424
425#ifdef VBOX_WITH_USB
426 HRESULT attachUSBDevice (IUSBDevice *aHostDevice, ULONG aMaskedIfs);
427 HRESULT detachUSBDevice (USBDeviceList::iterator &aIt);
428
429 static DECLCALLBACK(int)
430 usbAttachCallback (Console *that, IUSBDevice *aHostDevice, PCRTUUID aUuid,
431 bool aRemote, const char *aAddress, ULONG aMaskedIfs);
432 static DECLCALLBACK(int)
433 usbDetachCallback (Console *that, USBDeviceList::iterator *aIt, PCRTUUID aUuid);
434#endif
435
436 static DECLCALLBACK (int)
437 stateProgressCallback (PVM pVM, unsigned uPercent, void *pvUser);
438
439 static DECLCALLBACK(void)
440 setVMErrorCallback (PVM pVM, void *pvUser, int rc, RT_SRC_POS_DECL,
441 const char *pszFormat, va_list args);
442
443 static DECLCALLBACK(void)
444 setVMRuntimeErrorCallback (PVM pVM, void *pvUser, bool fFatal,
445 const char *pszErrorID,
446 const char *pszFormat, va_list args);
447
448 HRESULT captureUSBDevices (PVM pVM);
449 void detachAllUSBDevices (bool aDone);
450
451 static DECLCALLBACK (int) powerUpThread (RTTHREAD Thread, void *pvUser);
452 static DECLCALLBACK (int) saveStateThread (RTTHREAD Thread, void *pvUser);
453 static DECLCALLBACK (int) powerDownThread (RTTHREAD Thread, void *pvUser);
454
455 static DECLCALLBACK(void *) drvStatus_QueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
456 static DECLCALLBACK(void) drvStatus_UnitChanged(PPDMILEDCONNECTORS pInterface, unsigned iLUN);
457 static DECLCALLBACK(void) drvStatus_Destruct(PPDMDRVINS pDrvIns);
458 static DECLCALLBACK(int) drvStatus_Construct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle);
459
460 int mcAudioRefs;
461 volatile uint32_t mcVRDPClients;
462
463 static const char *sSSMConsoleUnit;
464 static uint32_t sSSMConsoleVer;
465
466 HRESULT loadDataFromSavedState();
467
468 static DECLCALLBACK(void) saveStateFileExec (PSSMHANDLE pSSM, void *pvUser);
469 static DECLCALLBACK(int) loadStateFileExec (PSSMHANDLE pSSM, void *pvUser, uint32_t u32Version);
470
471 bool mSavedStateDataLoaded : 1;
472
473 const ComPtr <IMachine> mMachine;
474 const ComPtr <IInternalMachineControl> mControl;
475
476 const ComPtr <IVRDPServer> mVRDPServer;
477 const ComPtr <IDVDDrive> mDVDDrive;
478 const ComPtr <IFloppyDrive> mFloppyDrive;
479
480 ConsoleVRDPServer * const mConsoleVRDPServer;
481
482 const ComObjPtr <Guest> mGuest;
483 const ComObjPtr <Keyboard> mKeyboard;
484 const ComObjPtr <Mouse> mMouse;
485 const ComObjPtr <Display> mDisplay;
486 const ComObjPtr <MachineDebugger> mDebugger;
487 const ComObjPtr <RemoteDisplayInfo> mRemoteDisplayInfo;
488
489 USBDeviceList mUSBDevices;
490 RemoteUSBDeviceList mRemoteUSBDevices;
491
492 SharedFolderMap mSharedFolders;
493 SharedFolderDataMap mMachineSharedFolders;
494 SharedFolderDataMap mGlobalSharedFolders;
495
496 /** The VM instance handle. */
497 PVM mpVM;
498 /** Holds the number of "readonly" mpVM callers (users) */
499 uint32_t mVMCallers;
500 /** Semaphore posted when the number of mpVM callers drops to zero */
501 RTSEMEVENT mVMZeroCallersSem;
502 /** true when Console has entered the mpVM destruction phase */
503 bool mVMDestroying : 1;
504
505 /** The current DVD drive state in the VM.
506 * This does not have to match the state maintained in the DVD. */
507 DriveState_T meDVDState;
508 /** The current Floppy drive state in the VM.
509 * This does not have to match the state maintained in the Floppy. */
510 DriveState_T meFloppyState;
511
512 VMMDev * const mVMMDev;
513 AudioSniffer * const mAudioSniffer;
514
515 PPDMLED mapFDLeds[2];
516 PPDMLED mapIDELeds[4];
517 PPDMLED mapSATALeds[30];
518 PPDMLED mapNetworkLeds[8];
519 PPDMLED mapSharedFolderLed;
520 PPDMLED mapUSBLed[2];
521#ifdef VBOX_WITH_UNIXY_TAP_NETWORKING
522 Utf8Str maTAPDeviceName[8];
523 RTFILE maTapFD[8];
524#endif
525
526 bool mVMStateChangeCallbackDisabled;
527
528 /* Local machine state value */
529 MachineState_T mMachineState;
530
531 typedef std::list <ComPtr <IConsoleCallback> > CallbackList;
532 CallbackList mCallbacks;
533
534 struct
535 {
536 /** OnMousePointerShapeChange() cache */
537 struct
538 {
539 bool valid;
540 bool visible;
541 bool alpha;
542 uint32_t xHot;
543 uint32_t yHot;
544 uint32_t width;
545 uint32_t height;
546 BYTE *shape;
547 size_t shapeSize;
548 }
549 mpsc;
550
551 /** OnMouseCapabilityChange() cache */
552 struct
553 {
554 bool valid;
555 BOOL supportsAbsolute;
556 BOOL needsHostCursor;
557 }
558 mcc;
559
560 /** OnKeyboardLedsChange() cache */
561 struct
562 {
563 bool valid;
564 bool numLock;
565 bool capsLock;
566 bool scrollLock;
567 }
568 klc;
569 }
570 mCallbackData;
571
572 friend struct VMTask;
573};
574
575#endif // ____H_CONSOLEIMPL
Note: See TracBrowser for help on using the repository browser.

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