Fixing load errors
parent
0202c35d2a
commit
145e6428ba
|
|
@ -7,7 +7,6 @@ quotations sequences specialized-arrays stack-checker
|
|||
stack-checker.errors system threads tools.test words
|
||||
alien.complex concurrency.promises ;
|
||||
FROM: alien.c-types => float short ;
|
||||
FROM: alien.private => fastcall ;
|
||||
SPECIALIZED-ARRAY: float
|
||||
SPECIALIZED-ARRAY: char
|
||||
IN: compiler.tests.alien
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
USING: kernel x11.glx ;
|
||||
USING: alien kernel x11.glx ;
|
||||
IN: opengl.gl.unix
|
||||
|
||||
: gl-function-context ( -- context ) glXGetCurrentContext ; inline
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
USING: alien.c-types alien.syntax kernel windows.types ;
|
||||
USING: alien alien.c-types alien.syntax kernel windows.types ;
|
||||
IN: opengl.gl.windows
|
||||
|
||||
LIBRARY: gl
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@ alien.syntax compiler definitions math libc eval
|
|||
debugger parser io io.backend system alien.accessors
|
||||
alien.libraries alien.c-types quotations kernel
|
||||
sequences ;
|
||||
FROM: alien.private => fastcall ;
|
||||
IN: alien
|
||||
|
||||
HELP: cdecl
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
! Copyright (C) 2010 Erik Charlebois
|
||||
! See http:// factorcode.org/license.txt for BSD license.
|
||||
USING: accessors alien.c-types alien.syntax classes.struct combinators
|
||||
combinators.short-circuit kernel math math.order sequences
|
||||
typed specialized-arrays locals system alien.libraries ;
|
||||
USING: accessors alien alien.c-types alien.libraries
|
||||
alien.syntax classes.struct combinators combinators.short-circuit
|
||||
kernel math math.order sequences typed specialized-arrays locals
|
||||
system ;
|
||||
SPECIALIZED-ARRAY: void*
|
||||
IN: chipmunk.ffi
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue