| 184 | } |
| 185 | |
| 186 | void PiuQRCode_create(xsMachine* the) |
| 187 | { |
| 188 | PiuQRCode* self; |
| 189 | xsVars(4); |
| 190 | xsSetHostChunk(xsThis, NULL, sizeof(PiuQRCodeRecord)); |
| 191 | self = PIU(QRCode, xsThis); |
| 192 | (*self)->the = the; |
| 193 | (*self)->reference = xsToReference(xsThis); |
| 194 | xsSetHostHooks(xsThis, (xsHostHooks*)&PiuQRCodeHooks); |
| 195 | (*self)->dispatch = (PiuDispatch)&PiuQRCodeDispatchRecord; |
| 196 | (*self)->recordSize = PiuRecordSize(sizeof(PiuQRCodeRecord)); |
| 197 | (*self)->flags = piuVisible; |
| 198 | PiuContentDictionary(the, self); |
| 199 | PiuQRCodeDictionary(the, self); |
| 200 | PiuBehaviorOnCreate(self); |
| 201 | } |
| 202 | |
| 203 | void PiuQRCode_get_string(xsMachine* the) |
| 204 | { |
nothing calls this directly
no test coverage detected