libsigrokdecode
 All Data Structures Files Functions Variables Typedefs Enumerator Macros
Variables
type_decoder.c File Reference
#include "sigrokdecode.h"
#include "sigrokdecode-internal.h"
#include "config.h"
#include <inttypes.h>
Include dependency graph for type_decoder.c:

Go to the source code of this file.

Variables

SRD_PRIV PyTypeObject srd_Decoder_type
 

Variable Documentation

SRD_PRIV PyTypeObject srd_Decoder_type
Initial value:
= {
PyVarObject_HEAD_INIT(NULL, 0)
.tp_name = "sigrokdecode.Decoder",
.tp_basicsize = sizeof(srd_Decoder),
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
.tp_doc = "sigrok Decoder base class",
.tp_methods = Decoder_methods,
}

Definition at line 212 of file type_decoder.c.

Referenced by PyInit_sigrokdecode().