Home | History | Annotate | Download | only in ctypes

Lines Matching refs:Structure

21     # if typ is structure
22 if issubclass(typ, Structure):
26 class _swapped_meta(type(Structure)):
40 # Note: The Structure metaclass checks for the *presence* (not the
47 LittleEndianStructure = Structure
49 class BigEndianStructure(Structure):
50 """Structure with big endian byte order"""
57 BigEndianStructure = Structure
58 class LittleEndianStructure(Structure):
59 """Structure with little endian byte order"""