dshow.h 1.54 KB
Newer Older
1
/*
2
 * Copyright (C) 2002 Alexandre Julliard
3 4 5 6 7 8 9 10 11 12 13 14 15
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * 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 21 22
#ifndef __DSHOW_INCLUDED__
#define __DSHOW_INCLUDED__

#define AM_NOVTABLE
23

24 25 26 27 28 29 30 31 32
#ifndef __WINESRC__
# include <windows.h>
# include <windowsx.h>
#else
# include <windef.h>
# include <wingdi.h>
# include <objbase.h>
#endif
#include <olectl.h>
33 34
#include <ddraw.h>
#include <mmsystem.h>
35
/* FIXME: #include <strsafe.h>*/
36

37 38 39 40
#ifndef NUMELMS
#define NUMELMS(array) (sizeof(array)/sizeof((array)[0]))
#endif

41
#include <strmif.h>
42 43 44 45
#include <amvideo.h>
#ifdef DSHOW_USE_AMAUDIO
/* FIXME: #include <amaudio.h>*/
#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> */
53 54

#ifndef OATRUE
55 56
#define OATRUE (-1)
#endif
57 58
#ifndef OAFALSE
#define OAFALSE (0)
59
#endif
60

61
#endif /* __DSHOW_INCLUDED__ */