view dynamin/c/x_types.d @ 55:c138461bf845

Add focusing and other changes that are related like descendantAdded/Removed events, Window.activated event, and updating List. Window.state was also added, even though focusing does not depend on it.
author Jordan Miner <jminer7@gmail.com>
date Sat, 08 Aug 2009 15:42:27 -0500
parents aa4efef0f0b1
children
line wrap: on
line source

module dynamin.c.x_types;

extern(C):

// Most of these types were foolishly not prefixed with X

alias ubyte* XPointer;
alias uint XID;
alias uint Mask;
alias uint Atom;
alias uint VisualID;
alias uint Time;
alias XID Window;
alias XID Drawable;
alias XID Pixmap;
alias XID Cursor;
alias XID Colormap;
alias XID KeySym;
alias ubyte KeyCode;
alias int Bool;
alias int Status;

alias void Screen;
alias void Display;