Files
Vadim Petrochenkov ca7a942ce5 Cython: Omit per-variant tags in unions generated for Rust enums
The common `tag` should already be enough, al other tags are identical to it.
In Cython case they only create noise because the declarations only introduce names and do not determine layouts.
2022-03-31 21:57:16 +02:00

30 lines
752 B
Cython

from libc.stdint cimport int8_t, int16_t, int32_t, int64_t, intptr_t
from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t, uintptr_t
cdef extern from *:
ctypedef bint bool
ctypedef struct va_list
cdef extern from *:
const int32_t PREFIX_LEN # = 22
const int64_t PREFIX_X # = (22 << 22)
const int64_t PREFIX_Y # = (PREFIX_X + PREFIX_X)
ctypedef int32_t PREFIX_NamedLenArray[PREFIX_LEN];
ctypedef int32_t PREFIX_ValuedLenArray[22];
cdef enum:
Weight,
Normal,
Bold,
ctypedef uint8_t PREFIX_AbsoluteFontWeight_Tag;
ctypedef union PREFIX_AbsoluteFontWeight:
PREFIX_AbsoluteFontWeight_Tag tag;
float weight;
void root(PREFIX_NamedLenArray x, PREFIX_ValuedLenArray y, PREFIX_AbsoluteFontWeight z);