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 #ifndef __DSHOW_INCLUDED__ 20 #define __DSHOW_INCLUDED__ 21 22 #define AM_NOVTABLE 23 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 <dshow/ddraw.h> 34 #include <mmsystem.h> 35 /* FIXME: #include <strsafe.h>*/ 36 37 #ifndef NUMELMS 38 #define NUMELMS(array) (sizeof(array)/sizeof((array)[0])) 39 #endif 40 41 #include <dshow/strmif.h> 42 #include <dshow/amvideo.h> 43 #ifdef DSHOW_USE_AMAUDIO 44 /* FIXME: #include <amaudio.h>*/ 45 #endif 46 #include <dshow/control.h> 47 #include <dshow/evcode.h> 48 #include <dshow/uuids.h> 49 #include <dshow/errors.h> 50 /* FIXME: #include <edevdefs.h> */ 51 #include <dshow/audevcod.h> 52 /* FIXME: #include <dvdevcod.h> */ 53 54 #ifndef OATRUE 55 #define OATRUE (-1) 56 #endif 57 #ifndef OAFALSE 58 #define OAFALSE (0) 59 #endif 60 61 #endif /* __DSHOW_INCLUDED__ */ 62