KSCAMERA_EXTENDEDPROP_VALUE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ksmedia.h

typedef struct tagKSCAMERA_EXTENDEDPROP_VALUE {
  union {
    double         dbl;
    ULONGLONG      ull;
    ULONG          ul;
    ULARGE_INTEGER ratio;
    LONG           l;
    LONGLONG       ll;
  } Value;
} KSCAMERA_EXTENDEDPROP_VALUE, *PKSCAMERA_EXTENDEDPROP_VALUE;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ksmedia-tagkscamera_extendedprop_value)

tagKSCAMERA_EXTENDEDPROP_VALUE structure

Description

The KSCAMERA_EXTENDEDPROP_VALUE structure is a data type union used to express an extended property value.

Members

Value

The extended property value.

Value.dbl

The extended property expressed as a double value.

Value.ull

The extended property expressed as a ULONGLONG value.

Value.ul

The extended property expressed as a ULONG value.

Value.ratio

The extended property value expressed as a ratio.

Value.l

The extended property expressed as a LONG value.

Value.ll

The extended property expressed as a LONGLONG value.

See also

KSCAMERA_EXTENDEDPROP_HEADER