diff options
author | rsc <devnull@localhost> | 2005-02-08 17:56:35 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-02-08 17:56:35 +0000 |
commit | dd4afdf4eb411c2899f792cb11380877af065b1d (patch) | |
tree | f45b07dbbc37c874f6677b55209ccbf83714a443 /include | |
parent | 46cfcf550f190fdef3496ae81d52c621862d01b1 (diff) | |
download | plan9port-dd4afdf4eb411c2899f792cb11380877af065b1d.tar.gz plan9port-dd4afdf4eb411c2899f792cb11380877af065b1d.tar.bz2 plan9port-dd4afdf4eb411c2899f792cb11380877af065b1d.zip |
Avoid yet another X11 stack overflow.
Diffstat (limited to 'include')
-rw-r--r-- | include/mouse.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/mouse.h b/include/mouse.h index 9b563faf..ce69c8ea 100644 --- a/include/mouse.h +++ b/include/mouse.h @@ -26,6 +26,11 @@ struct Mousectl int pid; /* of slave proc */ Display *display; /*Image* image; / * of associated window/display */ + + /* clumsy hack for X11 */ + struct Channel *ccursor; + struct Channel *ccursorwait; + QLock cursorlock; }; struct Menu |