mirror of
https://github.com/reactos/reactos.git
synced 2026-07-06 07:44:25 +08:00
In this folder will contain all header that is compatible with dxsdk 2004 dec. later I will upgrade this folder file to more resent dxsdk headers. svn path=/trunk/; revision=26344
14 lines
434 B
C
14 lines
434 B
C
|
|
#ifndef __DMORT_H__
|
|
#define __DMORT_H__
|
|
|
|
STDAPI MoCopyMediaType(DMO_MEDIA_TYPE *pmtDest, const DMO_MEDIA_TYPE *pmtSrc);
|
|
STDAPI MoCreateMediaType(DMO_MEDIA_TYPE **ppmt, DWORD cbFormat);
|
|
STDAPI MoDeleteMediaType(DMO_MEDIA_TYPE *pmt);
|
|
STDAPI MoDuplicateMediaType(DMO_MEDIA_TYPE **ppmtDest, const DMO_MEDIA_TYPE *pmtSrc);
|
|
STDAPI MoFreeMediaType(DMO_MEDIA_TYPE *pmt);
|
|
STDAPI MoInitMediaType(DMO_MEDIA_TYPE *pmt, DWORD cbFormat);
|
|
|
|
#endif
|
|
|