| 27 | |
| 28 | |
| 29 | class DummyStruct(BaseStruct): |
| 30 | _fields_ = [ |
| 31 | ('A', ctypes.c_uint32), |
| 32 | ('B', ctypes.c_uint64), |
| 33 | ('C', DummyInternalStruct), |
| 34 | ('D', ctypes.c_char * 16) |
| 35 | ] |
| 36 | |
| 37 | |
| 38 | # we only need context and not going to run anything anyway, so just use whatever |
no outgoing calls