Last change
on this file since 4723 was 4071, checked in by vboxsync, 17 years ago |
Biggest check-in ever. New source code headers for all (C) innotek files.
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id
|
File size:
1.2 KB
|
Line | |
---|
1 | /** @file
|
---|
2 | * PDM - Pluggable Device Manager.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License as published by the Free Software Foundation,
|
---|
12 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #ifndef ___VBox_pdm_h
|
---|
18 | #define ___VBox_pdm_h
|
---|
19 |
|
---|
20 | #include <VBox/pdmapi.h>
|
---|
21 | #include <VBox/pdmqueue.h>
|
---|
22 | #include <VBox/pdmcritsect.h>
|
---|
23 | #include <VBox/pdmthread.h>
|
---|
24 | #include <VBox/pdmifs.h>
|
---|
25 | #include <VBox/pdmdrv.h>
|
---|
26 | #include <VBox/pdmdev.h>
|
---|
27 | #include <VBox/pdmusb.h>
|
---|
28 | #include <VBox/pdmsrv.h>
|
---|
29 |
|
---|
30 | /** Source position.
|
---|
31 | * @deprecated Use RT_SRC_POS */
|
---|
32 | #define PDM_SRC_POS RT_SRC_POS
|
---|
33 |
|
---|
34 | /** Source position declaration.
|
---|
35 | * @deprecated Use RT_SRC_POS_DECL */
|
---|
36 | #define PDM_SRC_POS_DECL RT_SRC_POS_DECL
|
---|
37 |
|
---|
38 | /** Source position arguments.
|
---|
39 | * @deprecated Use RT_SRC_POS_ARGS */
|
---|
40 | #define PDM_SRC_POS_ARGS RT_SRC_POS_ARGS
|
---|
41 |
|
---|
42 | #endif
|
---|
43 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.