Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
| Microsoft DirectShow 9.0 | 
BfEnTvRat_GenericAttributes
This topic applies to Windows XP Service Pack 1 or later.
The BfEnTvRat_GenericAttributes enumeration type specifies additional content-rating attributes that can be used for any rating system, including custom rating systems.
Syntax
typedef enum {
  BfAttrNone   =   0,
  BfIsBlocked  =   1
  BfIsAttr_1   =   2,
  BfIsAttr_2   =   4,
  BfIsAttr_3   =   8,
  BfIsAttr_4   =  16,
  BfIsAttr_5   =  32,
  BfIsAttr_6   =  64,
  BfIsAttr_7   = 128,
  BfValidAttrSubmask  = 255
} BfEnTvRat_GenericAttributes;
Members
BfAttrNone
No restrictions are in place.
BfIsBlocked
Block all content, regardless of other flags.
BfIsAttr_1
Generic attribute 1.
BfIsAttr_2
Generic attribute 2.
BfIsAttr_3
Generic attribute 3.
BfIsAttr_4
Generic attribute 4.
BfIsAttr_5
Generic attribute 5.
BfIsAttr_6
Generic attribute 6.
BfIsAttr_7
Generic attribute 7.
BfValidAttrSubmask
A bitmask of all valid attribute bits.
Remarks
The BfIsBlocked flag specifies that a program should be blocked regardless of the type of content. Flags in the range BfIsAttr_1 to BfIsAttr_7 represent generic content attributes, such as violence or adult language. Content attributes do not apply to every ratings system. For an example of how these generic attributes map to a particular system, see BfEnTvRat_Attributes_US_TV.
Requirements
Header: Tvratings.h.
See Also