1 | /*
|
---|
2 | * Copyright (C) 2002 Alexandre Julliard
|
---|
3 | *
|
---|
4 | * This library is free software; you can redistribute it and/or
|
---|
5 | * modify it under the terms of the GNU Lesser General Public
|
---|
6 | * License as published by the Free Software Foundation; either
|
---|
7 | * version 2.1 of the License, or (at your option) any later version.
|
---|
8 | *
|
---|
9 | * This library is distributed in the hope that it will be useful,
|
---|
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
12 | * Lesser General Public License for more details.
|
---|
13 | *
|
---|
14 | * You should have received a copy of the GNU Lesser General Public
|
---|
15 | * License along with this library; if not, write to the Free Software
|
---|
16 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
---|
17 | */
|
---|
18 |
|
---|
19 | /*
|
---|
20 | * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
21 | * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
|
---|
22 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
23 | * a choice of LGPL license versions is made available with the language indicating
|
---|
24 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
25 | * of the LGPL is applied is otherwise unspecified.
|
---|
26 | */
|
---|
27 |
|
---|
28 | #ifndef __DSHOW_INCLUDED__
|
---|
29 | #define __DSHOW_INCLUDED__
|
---|
30 |
|
---|
31 | #define AM_NOVTABLE
|
---|
32 |
|
---|
33 | #ifndef __WINESRC__
|
---|
34 | # include <windows.h>
|
---|
35 | # include <windowsx.h>
|
---|
36 | #else
|
---|
37 | # include <windef.h>
|
---|
38 | # include <wingdi.h>
|
---|
39 | # include <objbase.h>
|
---|
40 | #endif
|
---|
41 | #include <olectl.h>
|
---|
42 | #include <ddraw.h>
|
---|
43 | #include <mmsystem.h>
|
---|
44 | /* FIXME: #include <strsafe.h>*/
|
---|
45 |
|
---|
46 | #ifndef NUMELMS
|
---|
47 | #define NUMELMS(array) (sizeof(array)/sizeof((array)[0]))
|
---|
48 | #endif
|
---|
49 |
|
---|
50 | #include <strmif.h>
|
---|
51 | #include <amvideo.h>
|
---|
52 | #ifdef DSHOW_USE_AMAUDIO
|
---|
53 | /* FIXME: #include <amaudio.h>*/
|
---|
54 | #endif
|
---|
55 | #include <control.h>
|
---|
56 | #include <evcode.h>
|
---|
57 | #include <uuids.h>
|
---|
58 | #include <errors.h>
|
---|
59 | /* FIXME: #include <edevdefs.h> */
|
---|
60 | #include <audevcod.h>
|
---|
61 | /* FIXME: #include <dvdevcod.h> */
|
---|
62 |
|
---|
63 | #ifndef OATRUE
|
---|
64 | #define OATRUE (-1)
|
---|
65 | #endif
|
---|
66 | #ifndef OAFALSE
|
---|
67 | #define OAFALSE (0)
|
---|
68 | #endif
|
---|
69 |
|
---|
70 | #endif /* __DSHOW_INCLUDED__ */
|
---|