VirtualBox

source: vbox/trunk/src/VBox/Main/include/VMMDev.h@ 7466

Last change on this file since 7466 was 6792, checked in by vboxsync, 17 years ago

Wrong parameters order.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/** @file
2 *
3 * VirtualBox Driver interface to VMM device
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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
18#ifndef ____H_VMMDEV
19#define ____H_VMMDEV
20
21#include "VirtualBoxBase.h"
22#include <VBox/pdmdrv.h>
23
24class Console;
25
26class VMMDev
27{
28public:
29 VMMDev(Console *console);
30 virtual ~VMMDev();
31 static const PDMDRVREG DrvReg;
32 /** Pointer to the associated VMMDev driver. */
33 struct DRVMAINVMMDEV *mpDrv;
34
35 bool fSharedFolderActive;
36 bool isShFlActive()
37 {
38 return fSharedFolderActive;
39 }
40
41 Console *getParent()
42 {
43 return mParent;
44 }
45
46 int WaitCredentialsJudgement (uint32_t u32Timeout, uint32_t *pu32GuestFlags);
47 int SetCredentialsJudgementResult (uint32_t u32Flags);
48
49 PPDMIVMMDEVPORT getVMMDevPort();
50
51 int hgcmLoadService (const char *pszServiceLibrary, const char *pszServiceName);
52 int hgcmHostCall (const char *pszServiceName, uint32_t u32Function, uint32_t cParms, PVBOXHGCMSVCPARM paParms);
53 void hgcmShutdown (void);
54
55private:
56 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);
57 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle);
58 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
59 static DECLCALLBACK(void) drvReset(PPDMDRVINS pDrvIns);
60
61 ComObjPtr <Console, ComWeakRef> mParent;
62
63 RTSEMEVENT mCredentialsEvent;
64 uint32_t mu32CredentialsFlags;
65};
66
67#endif // ____H_VMMDEV
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