| 149 | } |
| 150 | |
| 151 | void PiuColumn_create(xsMachine* the) |
| 152 | { |
| 153 | PiuColumn* self; |
| 154 | xsVars(4); |
| 155 | xsSetHostChunk(xsThis, NULL, sizeof(PiuColumnRecord)); |
| 156 | self = PIU(Column, xsThis); |
| 157 | (*self)->the = the; |
| 158 | (*self)->reference = xsToReference(xsThis); |
| 159 | xsSetHostHooks(xsThis, (xsHostHooks*)&PiuColumnHooks); |
| 160 | (*self)->dispatch = (PiuDispatch)&PiuColumnDispatchRecord; |
| 161 | (*self)->recordSize = PiuRecordSize(sizeof(PiuColumnRecord)); |
| 162 | (*self)->flags = piuVisible | piuContainer; |
| 163 | PiuContentDictionary(the, self); |
| 164 | PiuContainerDictionary(the, self); |
| 165 | PiuBehaviorOnCreate(self); |
| 166 | } |
| 167 |
nothing calls this directly
no test coverage detected