10 lines
347 B
Factor
10 lines
347 B
Factor
|
! Copyright (C) 2009 Slava Pestov.
|
||
|
! See http://factorcode.org/license.txt for BSD license.
|
||
|
USING: alien.syntax core-foundation.attributed-strings ;
|
||
|
IN: core-text
|
||
|
|
||
|
TYPEDEF: void* CTLineRef
|
||
|
|
||
|
FUNCTION: CTLineRef CTLineCreateWithAttributedString ( CFAttributedStringRef string ) ;
|
||
|
|
||
|
FUNCTION: void CTLineDraw ( CTLineRef line, CGContextRef context ) ;
|