Mercurial > emacs
annotate oldXMenu/EvHand.c @ 110272:1e4996f96b0b
Merge from mainline.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Tue, 07 Sep 2010 01:25:00 +0000 |
parents | 5cc91198ffb2 |
children | ef719132ddfa |
rev | line source |
---|---|
76174
fec5e03aaf59
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
1 /* Copyright Massachusetts Institute of Technology 1985 */ |
fec5e03aaf59
Remove FSF copyright since file does not differ significantly from X11
Glenn Morris <rgm@gnu.org>
parents:
75348
diff
changeset
|
2 |
25858 | 3 #include "copyright.h" |
4 | |
5 | |
6 /* | |
7 * XMenu: MIT Project Athena, X Window system menu package | |
8 * | |
9 * XMenuEventHandler - Set the XMenu asynchronous event handler. | |
10 * | |
11 * Author: Tony Della Fera, DEC | |
12 * December 19, 1985 | |
13 * | |
14 */ | |
15 | |
16 #include "XMenuInt.h" | |
17 | |
109124
5cc91198ffb2
Convert function definitions in oldXMenu to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
76174
diff
changeset
|
18 XMenuEventHandler(int (*handler) (XEvent*)) |
25858 | 19 { |
20 /* | |
21 * Set the global event handler variable. | |
22 */ | |
23 _XMEventHandler = handler; | |
24 } | |
25 | |
52401 | 26 /* arch-tag: 8d614c8c-94d9-43c8-8e32-c438a3c8a8a3 |
27 (do not change this comment) */ |