VirtualBox

source: vbox/trunk/src/VBox/Main/include/AudioSnifferInterface.h@ 55437

Last change on this file since 55437 was 55401, checked in by vboxsync, 10 years ago

added a couple of missing Id headers

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.5 KB
Line 
1/* $Id: AudioSnifferInterface.h 55401 2015-04-23 10:03:17Z vboxsync $ */
2/** @file
3 * VirtualBox Driver interface to Audio Sniffer device
4 */
5
6/*
7 * Copyright (C) 2006-2010 Oracle Corporation
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_AUDIOSNIFFERINTERFACE
19#define ____H_AUDIOSNIFFERINTERFACE
20
21#include <VBox/com/ptr.h>
22#include <VBox/vmm/pdmdrv.h>
23
24class Console;
25
26class AudioSniffer
27{
28public:
29 AudioSniffer(Console *console);
30 virtual ~AudioSniffer();
31
32 static const PDMDRVREG DrvReg;
33
34 /** Pointer to the associated Audio Sniffer driver. */
35 struct DRVAUDIOSNIFFER *mpDrv;
36
37 Console *getParent(void) { return mParent; }
38
39 PPDMIAUDIOSNIFFERPORT getAudioSnifferPort(void);
40
41private:
42 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID);
43 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags);
44 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
45
46 Console * const mParent;
47};
48
49#endif /* !____H_AUDIOSNIFFERINTERFACE */
50/* vi: set tabstop=4 shiftwidth=4 expandtab: */
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