[VIDEOPRT]
[reactos.git] / reactos / drivers / video / videoprt / stubs.c
1 /*
2 * VideoPort driver
3 *
4 * Copyright (C) 2002-2004, 2007 ReactOS Team
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 *
20 */
21
22
23 #include "videoprt.h"
24 #include <wdmguid.h>
25
26 VP_STATUS
27 NTAPI
28 VideoPortFlushRegistry(
29 PVOID HwDeviceExtension)
30 {
31 UNIMPLEMENTED;
32 return 0;
33 }
34
35 ULONG
36 NTAPI
37 VideoPortGetAssociatedDeviceID(
38 IN PVOID DeviceObject)
39 {
40 UNIMPLEMENTED;
41 return 0;
42 }
43
44
45 ULONG
46 NTAPI
47 VideoPortGetBytesUsed(
48 IN PVOID HwDeviceExtension,
49 IN PDMA pDma)
50 {
51 UNIMPLEMENTED;
52 return 0;
53 }
54
55 PVOID
56 NTAPI
57 VideoPortGetMdl(
58 IN PVOID HwDeviceExtension,
59 IN PDMA pDma)
60 {
61 UNIMPLEMENTED;
62 return 0;
63 }
64
65 LONG
66 NTAPI
67 VideoPortReadStateEvent(
68 IN PVOID HwDeviceExtension,
69 IN PEVENT pEvent)
70 {
71 UNIMPLEMENTED;
72 return 0;
73 }
74
75 VOID
76 NTAPI
77 VideoPortSetBytesUsed(
78 IN PVOID HwDeviceExtension,
79 IN OUT PDMA pDma,
80 IN ULONG BytesUsed)
81 {
82 UNIMPLEMENTED;
83 }
84
85 BOOLEAN
86 NTAPI
87 VideoPortUnlockPages(
88 IN PVOID hwDeviceExtension,
89 IN PDMA pDma)
90 {
91 UNIMPLEMENTED;
92 return 0;
93 }