Mostly-complete Cython implementation.
[pycomedi.git] / pycomedi / instruction.pxd
1 # Copyright
2
3 "Expose `Insn` internals at the C level for other Cython modules"
4
5 cimport _comedi_h
6
7
8 cdef class Insn (object):
9     cdef _comedi_h.comedi_insn _insn
10     cdef public list _fields
11
12     cdef _comedi_h.comedi_insn get_comedi_insn(self)