ASN1_TFLG_COMBINE

This flag means a parent structure is passed instead of the field: this is useful is a SEQUENCE is being combined with a CHOICE for example. Since this means the structure and item name will differ we need to use the ASN1_CHOICE_END_name() macro for example.

extern (C) nothrow @nogc
enum ASN1_TFLG_COMBINE = 0x01 << 10;

Meta