| 384 | } |
| 385 | |
| 386 | void PiuFontListNew(xsMachine* the) |
| 387 | { |
| 388 | PiuFontList* self; |
| 389 | xsResult = xsNewHostObject(NULL); |
| 390 | xsSetHostChunk(xsResult, NULL, sizeof(PiuFontListRecord)); |
| 391 | self = PIU(FontList, xsResult); |
| 392 | (*self)->reference = xsToReference(xsResult); |
| 393 | xsSetHostHooks(xsResult, &PiuFontListHooks); |
| 394 | } |
| 395 |
no outgoing calls
no test coverage detected