2002-03-10 00:29:33 +01:00
|
|
|
/*
|
2002-03-22 20:20:11 +01:00
|
|
|
* Copyright (C) 2002 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2002-03-22 20:20:11 +01:00
|
|
|
#ifndef __DSHOW_INCLUDED__
|
|
|
|
#define __DSHOW_INCLUDED__
|
|
|
|
|
|
|
|
#define AM_NOVTABLE
|
2001-08-15 19:38:28 +02:00
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <windef.h>
|
|
|
|
#include <wingdi.h>
|
|
|
|
#include <objbase.h>
|
|
|
|
#include <ddraw.h>
|
|
|
|
#include <mmsystem.h>
|
2001-08-15 19:38:28 +02:00
|
|
|
|
2002-03-22 20:20:11 +01:00
|
|
|
#ifndef NUMELMS
|
|
|
|
#define NUMELMS(array) (sizeof(array)/sizeof((array)[0]))
|
|
|
|
#endif
|
|
|
|
|
2003-08-28 23:43:34 +02:00
|
|
|
#include <strmif.h>
|
|
|
|
/*#include <amvideo.h>*/
|
|
|
|
/*#include <amaudio.h>*/
|
|
|
|
#include <control.h>
|
|
|
|
/*#include <evcode.h>*/
|
|
|
|
#include <uuids.h>
|
|
|
|
/*#include <errors.h>*/
|
|
|
|
#include <audevcod.h>
|
2001-08-15 19:38:28 +02:00
|
|
|
|
|
|
|
#ifndef OATRUE
|
2002-03-22 20:20:11 +01:00
|
|
|
#define OATRUE (-1)
|
|
|
|
#endif
|
2001-08-15 19:38:28 +02:00
|
|
|
#ifndef OAFALSE
|
|
|
|
#define OAFALSE (0)
|
2002-03-22 20:20:11 +01:00
|
|
|
#endif
|
2001-08-15 19:38:28 +02:00
|
|
|
|
2002-03-22 20:20:11 +01:00
|
|
|
#endif /* __DSHOW_INCLUDED__ */
|