holdingarea/llvm/llvm-gcc4.2-2.7-x86-mingw32/include/il21dec.h
author Matt Plumtree <matt.plumtree@nokia.com>
Thu, 16 Sep 2010 09:43:14 +0100
branchbug235_bringup_0
changeset 20 d2d6724aef32
permissions -rw-r--r--
Initial contribution of Khronos API implmentations suitable for simulator host-side. Code originally developed for use with PlatSim, and includes a deserialization component suitable for use with that. For convenience, the open source LLVM (http://llvm.org) installation is made available here directly.

#ifndef _IL21DEC_H
#define _IL21DEC_H
#if __GNUC__ >= 3
#pragma GCC system_header
#endif

#ifdef __cplusplus
extern "C" {
#endif

/*--- DirectShow Reference - DirectShow Enumerated Types */
typedef enum _AM_LINE21_CCLEVEL {
	AM_L21_CCLEVEL_TC2
} AM_LINE21_CCLEVEL,*PAM_LINE21_CCLEVEL;
typedef enum _AM_LINE21_CCSERVICE {
	AM_L21_CCSERVICE_None,
	AM_L21_CCSERVICE_Caption1,
	AM_L21_CCSERVICE_Caption2,
	AM_L21_CCSERVICE_Text1,
	AM_L21_CCSERVICE_Text2,
	AM_L21_CCSERVICE_XDS,
} AM_LINE21_CCSERVICE,*PAM_LINE21_CCSERVICE;
typedef enum _AM_LINE21_CCSTATE {
	AM_L21_CCSTATE_Off,
	AM_L21_CCSTATE_On
} AM_LINE21_CCSTATE,*PAM_LINE21_CCSTATE;
typedef enum _AM_LINE21_DRAWBGMODE {
	AM_L21_DRAWBGMODE_Opaque,
	AM_L21_DRAWBGMODE_Transparent
} AM_LINE21_DRAWBGMODE,*PAM_LINE21_DRAWBGMODE;

#ifdef __cplusplus
}
#endif
#endif