blob: 01b081d470136c600eb0cfd56d5fb18ca1139f95 [file] [log] [blame]
Hidenori Takeshimaae6075c2002-03-12 19:20:44 +00001/*
Alexandre Julliarda92e3972002-03-22 19:20:11 +00002 * Copyright (C) 2002 Alexandre Julliard
Hidenori Takeshimaae6075c2002-03-12 19:20:44 +00003 *
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
Jonathan Ernst360a3f92006-05-18 14:49:52 +020016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Hidenori Takeshimaae6075c2002-03-12 19:20:44 +000017 */
18
Alexandre Julliarda92e3972002-03-22 19:20:11 +000019#ifndef __DMORT_H__
20#define __DMORT_H__
Hidenori Takeshimaae6075c2002-03-12 19:20:44 +000021
Alexandre Julliarda92e3972002-03-22 19:20:11 +000022HRESULT WINAPI MoCopyMediaType(DMO_MEDIA_TYPE*,const DMO_MEDIA_TYPE*);
23HRESULT WINAPI MoCreateMediaType(DMO_MEDIA_TYPE**,DWORD);
24HRESULT WINAPI MoDeleteMediaType(DMO_MEDIA_TYPE*);
25HRESULT WINAPI MoDuplicateMediaType(DMO_MEDIA_TYPE**,const DMO_MEDIA_TYPE*);
26HRESULT WINAPI MoFreeMediaType(DMO_MEDIA_TYPE*);
27HRESULT WINAPI MoInitMediaType(DMO_MEDIA_TYPE*,DWORD);
Hidenori Takeshimaae6075c2002-03-12 19:20:44 +000028
Alexandre Julliarda92e3972002-03-22 19:20:11 +000029#endif /* __DMORT_H__ */