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 as published by the Free Software Foundation,
|
---|
13 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
14 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
15 | * 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 |
|
---|
24 | class Console;
|
---|
25 |
|
---|
26 | class VMMDev
|
---|
27 | {
|
---|
28 | public:
|
---|
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 *pszServiceName, const char *pszServiceLibrary);
|
---|
52 | int hgcmHostCall (const char *pszServiceName, uint32_t u32Function, uint32_t cParms, PVBOXHGCMSVCPARM paParms);
|
---|
53 | void hgcmShutdown (void);
|
---|
54 |
|
---|
55 | private:
|
---|
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
|
---|