Added LGPL standard comment, and copyright notices where necessary.
[wine] / include / dshow.h
1 /*
2  * Copyright (C) 2001 Hidenori Takeshima
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #ifndef __WINE_DSHOW_H
20 #define __WINE_DSHOW_H
21
22 #include "windows.h"
23 #include "windowsx.h"
24 #include "olectl.h"
25 #include "ddraw.h"
26 #include "mmsystem.h"
27
28 #include "strmif.h"
29 #include "amvideo.h"
30 #include "amaudio.h"
31 #include "control.h"
32 #include "evcode.h"
33 #include "uuids.h"
34 #include "errors.h"
35 /*#include "edevdefs.h"*/  /* not yet */
36 #include "audevcod.h"
37 /*#include "dvdevcod.h"*/  /* not yet */
38
39 #ifndef AM_NOVTABLE
40 #define AM_NOVTABLE
41 #endif /* AM_NOVTABLE */
42
43 #ifndef NUMELEMS
44 #define NUMELEMS(elem)  (sizeof(elem)/sizeof((elem)[0]))
45 #endif  /* NUMELEMS */
46
47 #ifndef OATRUE
48 #define OATRUE  (-1)
49 #endif  /* OATRUE */
50 #ifndef OAFALSE
51 #define OAFALSE (0)
52 #endif  /* OAFALSE */
53
54
55 #endif /* __WINE_DSHOW_H */