VirtualBox

source: vbox/trunk/src/VBox/Main/darwin/iokit.h@ 7692

Last change on this file since 7692 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 1.5 KB
Line 
1/* $Id: iokit.h 5999 2007-12-07 15:05:06Z vboxsync $ */
2/** @file
3 * Main - Darwin IOKit Routines.
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 ___darwin_iokit_h___
19#define ___darwin_iokit_h___
20
21#include <iprt/cdefs.h>
22#include <iprt/types.h>
23#ifdef VBOX_WITH_USB
24# include <VBox/usb.h>
25#endif
26
27/**
28 * Darwin DVD descriptor as returned by DarwinGetDVDDrives().
29 */
30typedef struct DARWINDVD
31{
32 /** Pointer to the next DVD. */
33 struct DARWINDVD *pNext;
34 /** Variable length name / identifier. */
35 char szName[1];
36} DARWINDVD, *PDARWINDVD;
37
38/** The run loop mode string used by iokit.cpp when it registers
39 * notifications events. */
40#define VBOX_IOKIT_MODE_STRING "VBoxIOKitMode"
41
42__BEGIN_DECLS
43PDARWINDVD DarwinGetDVDDrives(void);
44#ifdef VBOX_WITH_USB
45void * DarwinSubscribeUSBNotifications(void);
46void DarwinUnsubscribeUSBNotifications(void *pvOpaque);
47PUSBDEVICE DarwinGetUSBDevices(void);
48void DarwinFreeUSBDeviceFromIOKit(PUSBDEVICE pCur);
49int DarwinReEnumerateUSBDevice(PCUSBDEVICE pCur);
50#endif
51__END_DECLS
52
53#endif
54
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