| 35 | |
| 36 | |
| 37 | HFontCollection FontCollectionCreate() |
| 38 | { |
| 39 | FontCollection* coll = new FontCollection; |
| 40 | coll->m_LayoutType = TEXT_LAYOUT_TYPE_FULL; |
| 41 | |
| 42 | #if defined(FONT_USE_SKRIBIDI) |
| 43 | coll->m_Collection = skb_font_collection_create(); |
| 44 | #endif |
| 45 | return coll; |
| 46 | }; |
| 47 | |
| 48 | void FontCollectionDestroy(HFontCollection coll) |
| 49 | { |