core-foundation: cleanup usings.

db4
John Benediktsson 2014-12-13 16:25:59 -08:00
parent 4a13633e5d
commit be64b40b7f
9 changed files with 28 additions and 30 deletions

View File

@ -1,7 +1,7 @@
! Copyright (C) 2008, 2009 Slava Pestov. ! Copyright (C) 2008, 2009 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types alien.syntax core-foundation kernel USING: alien.c-types alien.syntax core-foundation fry kernel
sequences fry ; sequences ;
IN: core-foundation.arrays IN: core-foundation.arrays
TYPEDEF: void* CFArrayRef TYPEDEF: void* CFArrayRef

View File

@ -1,9 +1,8 @@
! Copyright (C) 2009 Slava Pestov. ! Copyright (C) 2009 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types alien.syntax kernel destructors USING: alien.c-types alien.syntax core-foundation
core-foundation core-foundation.dictionaries core-foundation.dictionaries core-foundation.strings
core-foundation.strings core-foundation.utilities destructors kernel ;
core-foundation.utilities ;
IN: core-foundation.attributed-strings IN: core-foundation.attributed-strings
TYPEDEF: void* CFAttributedStringRef TYPEDEF: void* CFAttributedStringRef

View File

@ -1,7 +1,7 @@
! Copyright (C) 2008 Slava Pestov. ! Copyright (C) 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types alien.syntax kernel sequences USING: alien.c-types alien.syntax core-foundation
core-foundation core-foundation.urls ; core-foundation.urls kernel sequences ;
IN: core-foundation.bundles IN: core-foundation.bundles
TYPEDEF: void* CFBundleRef TYPEDEF: void* CFBundleRef

View File

@ -1,6 +1,6 @@
! Copyright (C) 2008 Joe Groff. ! Copyright (C) 2008 Joe Groff.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types alien.syntax core-foundation kernel math USING: alien.c-types alien.syntax core-foundation kernel
sequences ; sequences ;
IN: core-foundation.data IN: core-foundation.data

View File

@ -1,11 +1,11 @@
! Copyright (C) 2008 Slava Pestov ! Copyright (C) 2008 Slava Pestov
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien alien.c-types alien.data alien.strings alien.syntax USING: accessors alien alien.c-types alien.data alien.strings
kernel math sequences namespaces make assocs init accessors alien.syntax arrays assocs classes.struct combinators
continuations combinators io.encodings.utf8 destructors locals core-foundation core-foundation.arrays core-foundation.run-loop
arrays specialized-arrays classes.struct core-foundation core-foundation.strings core-foundation.time destructors init
core-foundation.arrays core-foundation.run-loop io.encodings.utf8 kernel locals namespaces sequences
core-foundation.strings core-foundation.time unix.types ; specialized-arrays unix.types ;
FROM: namespaces => change-global ; FROM: namespaces => change-global ;
IN: core-foundation.fsevents IN: core-foundation.fsevents

View File

@ -1,10 +1,9 @@
! Copyright (C) 2011 Doug Coleman. ! Copyright (C) 2011 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types alien.data alien.syntax classes.struct USING: alien.syntax classes.struct continuations core-foundation
continuations core-foundation core-foundation.strings core-foundation.strings core-foundation.urls destructors kernel
core-foundation.urls destructors kernel sequences sequences specialized-arrays.instances.alien.c-types.char
specialized-arrays.instances.alien.c-types.char strings strings unix.ffi ;
unix.ffi ;
IN: core-foundation.launch-services IN: core-foundation.launch-services
FUNCTION: OSStatus LSFindApplicationForInfo ( FUNCTION: OSStatus LSFindApplicationForInfo (

View File

@ -1,7 +1,7 @@
! Copyright (C) 2008, 2010 Slava Pestov. ! Copyright (C) 2008, 2010 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types alien.syntax calendar core-foundation USING: alien.c-types alien.syntax calendar.unix core-foundation
core-foundation.time calendar.unix kernel locals math system ; core-foundation.time locals ;
IN: core-foundation.timers IN: core-foundation.timers
TYPEDEF: void* CFRunLoopTimerRef TYPEDEF: void* CFRunLoopTimerRef

View File

@ -1,7 +1,7 @@
! Copyright (C) 2008 Slava Pestov. ! Copyright (C) 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: alien.c-types alien.syntax kernel core-foundation.strings USING: alien.c-types alien.syntax core-foundation
core-foundation core-foundation.urls ; core-foundation.strings kernel ;
IN: core-foundation.urls IN: core-foundation.urls
CONSTANT: kCFURLPOSIXPathStyle 0 CONSTANT: kCFURLPOSIXPathStyle 0

View File

@ -1,10 +1,10 @@
! Copyright (C) 2009 Slava Pestov. ! Copyright (C) 2009 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: math assocs kernel sequences byte-arrays strings USING: alien assocs byte-arrays core-foundation
hashtables alien destructors core-foundation.arrays core-foundation.data
core-foundation.numbers core-foundation.strings core-foundation.dictionaries core-foundation.numbers
core-foundation.arrays core-foundation.dictionaries core-foundation.strings destructors hashtables kernel math
core-foundation.data core-foundation ; sequences strings ;
IN: core-foundation.utilities IN: core-foundation.utilities
GENERIC: (>cf) ( obj -- cf ) GENERIC: (>cf) ( obj -- cf )