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 | */
|
---|
30 | typedef 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
|
---|
43 | PDARWINDVD DarwinGetDVDDrives(void);
|
---|
44 | #ifdef VBOX_WITH_USB
|
---|
45 | void * DarwinSubscribeUSBNotifications(void);
|
---|
46 | void DarwinUnsubscribeUSBNotifications(void *pvOpaque);
|
---|
47 | PUSBDEVICE DarwinGetUSBDevices(void);
|
---|
48 | void DarwinFreeUSBDeviceFromIOKit(PUSBDEVICE pCur);
|
---|
49 | int DarwinReEnumerateUSBDevice(PCUSBDEVICE pCur);
|
---|
50 | #endif
|
---|
51 | __END_DECLS
|
---|
52 |
|
---|
53 | #endif
|
---|
54 |
|
---|