includes: Fix alignment for 64-bits
[wine/wine64.git] / include / dshow.h
blob6513140082c7d54bdfb47bcb9697cd7a3ba74889
1 /*
2 * Copyright (C) 2002 Alexandre Julliard
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.
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.
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
19 #ifndef __DSHOW_INCLUDED__
20 #define __DSHOW_INCLUDED__
22 #define AM_NOVTABLE
24 #ifndef __WINESRC__
25 # include <windows.h>
26 # include <windowsx.h>
27 #else
28 # include <windef.h>
29 # include <wingdi.h>
30 # include <objbase.h>
31 #endif
32 #include <olectl.h>
33 #include <ddraw.h>
34 #include <mmsystem.h>
35 /* FIXME: #include <strsafe.h>*/
37 #ifndef NUMELMS
38 #define NUMELMS(array) (sizeof(array)/sizeof((array)[0]))
39 #endif
41 #include <strmif.h>
42 #include <amvideo.h>
43 #ifdef DSHOW_USE_AMAUDIO
44 /* FIXME: #include <amaudio.h>*/
45 #endif
46 #include <control.h>
47 #include <evcode.h>
48 #include <uuids.h>
49 #include <errors.h>
50 /* FIXME: #include <edevdefs.h> */
51 #include <audevcod.h>
52 /* FIXME: #include <dvdevcod.h> */
54 #ifndef OATRUE
55 #define OATRUE (-1)
56 #endif
57 #ifndef OAFALSE
58 #define OAFALSE (0)
59 #endif
61 #endif /* __DSHOW_INCLUDED__ */