mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
dshow header not completet. but egnuth be in use.
svn path=/trunk/; revision=20069
This commit is contained in:
parent
5cfb66eb75
commit
1d9fad1184
1 changed files with 51 additions and 0 deletions
51
reactos/w32api/include/DShow.h
Normal file
51
reactos/w32api/include/DShow.h
Normal file
|
@ -0,0 +1,51 @@
|
|||
|
||||
#ifndef __DSHOW_INCLUDED__
|
||||
#define __DSHOW_INCLUDED__
|
||||
|
||||
#if __GNUC__ >= 3
|
||||
#pragma GCC system_header
|
||||
#endif
|
||||
|
||||
#if _MSC_VER>=1100
|
||||
#define AM_NOVTABLE __declspec(novtable)
|
||||
#else
|
||||
#define AM_NOVTABLE
|
||||
#endif
|
||||
|
||||
|
||||
#include <windows.h>
|
||||
#include <windowsx.h>
|
||||
#include <olectl.h>
|
||||
#include <ddraw.h>
|
||||
#include <mmsystem.h>
|
||||
|
||||
#ifndef NUMELMS
|
||||
#define NUMELMS(aa) (sizeof(aa)/sizeof((aa)[0]))
|
||||
#endif
|
||||
|
||||
#include <strmif.h>
|
||||
#include <amvideo.h>
|
||||
#include <amaudio.h>
|
||||
//#include <control.h>
|
||||
#include <evcode.h>
|
||||
#include <uuids.h>
|
||||
#include <errors.h>
|
||||
#include <edevdefs.h>
|
||||
#include <audevcod.h>
|
||||
#include <dvdevcod.h>
|
||||
|
||||
#ifndef OATRUE
|
||||
#define OATRUE (-1)
|
||||
#endif
|
||||
#ifndef OAFALSE
|
||||
#define OAFALSE (0)
|
||||
#endif
|
||||
|
||||
|
||||
#ifndef InterlockedExchangePointer
|
||||
#define InterlockedExchangePointer(Target, Value) \
|
||||
(PVOID)InterlockedExchange((PLONG)(Target), (LONG)(Value))
|
||||
#endif
|
||||
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue