| 118 | } |
| 119 | |
| 120 | void PiuFontNew(xsMachine* the) |
| 121 | { |
| 122 | PiuFont* self; |
| 123 | xsResult = xsNewHostObject(NULL); |
| 124 | xsSetHostChunk(xsResult, NULL, sizeof(PiuFontRecord)); |
| 125 | self = PIU(Font, xsResult); |
| 126 | (*self)->reference = xsToReference(xsResult); |
| 127 | (*self)->the = the; |
| 128 | xsSetHostHooks(xsResult, &PiuFontHooks); |
| 129 | } |
| 130 | |
| 131 | void PiuStyleLookupFont(PiuStyle* self) |
| 132 | { |
no outgoing calls
no test coverage detected