/usr/i586-mingw32msvc/include/il21dec.h is in mingw32-runtime 3.15.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | #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
|