]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/x11/xlib/xlib.factor
Remove <uint> *uint and friends. Hopefully remove the last usages of these words
[factor.git] / basis / x11 / xlib / xlib.factor
index e20314bf11ac7b9c8a78d37bfeb79e5e14747b24..6fc5206711ec645b45a095db3d5220ab5da6baa6 100644 (file)
@@ -48,17 +48,17 @@ TYPEDEF: int Bool
 TYPEDEF: ulong VisualID
 TYPEDEF: ulong Time
 
-ALIAS: <XID> <ulong>
+: <XID> ( n -- ulong ) ulong <ref> ;
 ALIAS: <Window> <XID>
 ALIAS: <Drawable> <XID>
 ALIAS: <KeySym> <XID>
-ALIAS: <Atom> <ulong>
+: <Atom> ( n -- ulong ) ulong <ref> ;
 
-ALIAS: *XID *ulong
+: *XID ( bytes -- n ) ulong deref ;
 ALIAS: *Window *XID
 ALIAS: *Drawable *XID
 ALIAS: *KeySym *XID
-ALIAS: *Atom *ulong
+: *Atom ( bytes -- n ) ulong deref ;
 !
 ! 2 - Display Functions
 !