2010-02-12 09:20:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
2007-04-14 18:18:31 +00:00
|
|
|
|
|
|
|
#ifndef __DMO_H__
|
|
|
|
#define __DMO_H__
|
|
|
|
|
2010-02-12 09:20:35 +00:00
|
|
|
#include <mediaerr.h>
|
2007-04-14 18:18:31 +00:00
|
|
|
|
|
|
|
#ifdef FIX_LOCK_NAME
|
2010-02-12 09:20:35 +00:00
|
|
|
#define Lock DMOLock
|
2007-04-14 18:18:31 +00:00
|
|
|
#endif
|
2010-02-12 09:20:35 +00:00
|
|
|
#include <mediaobj.h>
|
2007-04-14 18:18:31 +00:00
|
|
|
#ifdef FIX_LOCK_NAME
|
2010-02-12 09:20:35 +00:00
|
|
|
#undef Lock
|
2007-04-14 18:18:31 +00:00
|
|
|
#endif
|
2010-02-12 09:20:35 +00:00
|
|
|
#include <dmoreg.h>
|
|
|
|
#include <dmort.h>
|
2007-04-14 18:18:31 +00:00
|
|
|
|
2010-02-12 09:20:35 +00:00
|
|
|
#endif /* __DMO_H__ */
|