]> gitweb.factorcode.org Git - factor.git/commitdiff
alien: add singletons for thiscall and fastcall
authorJoe Groff <arcata@gmail.com>
Thu, 1 Apr 2010 03:30:04 +0000 (20:30 -0700)
committerJoe Groff <arcata@gmail.com>
Thu, 1 Apr 2010 03:30:04 +0000 (20:30 -0700)
core/alien/alien.factor

index 7a539d4dd5d4b5973ff6481b93d8d107255f989d..4dab6f84523411b5adf9fdf828b470789802d17b 100644 (file)
@@ -5,9 +5,9 @@ kernel.private byte-arrays byte-vectors arrays init
 continuations.private ;
 IN: alien
 
-SINGLETONS: stdcall cdecl mingw ;
+SINGLETONS: stdcall thiscall fastcall cdecl mingw ;
 
-UNION: abi stdcall cdecl mingw ;
+UNION: abi stdcall thiscall fastcall cdecl mingw ;
 
 PREDICATE: pinned-alien < alien underlying>> not ;