2 /* $Header: /cvs/emacs/oldXMenu/XMenuInt.h,v 1.1 1999/10/03 19:35:24 fx Exp $ */
3 /* Copyright Massachusetts Institute of Technology 1985 */
6 * XMenu: MIT Project Athena, X Window system menu package
8 * XMenuInternal.h - Internal menu system include file for the
9 * MIT Project Athena XMenu X window system
12 * Author: Tony Della Fera, DEC
16 #ifndef _XMenuInternal_h_
17 #define _XMenuInternal_h_
19 /* Avoid warnings about redefining NULL by including <stdio.h> first;
20 the other file which wants to define it (<stddef.h> on Ultrix
21 systems) can deal if NULL is already defined, but <stdio.h> can't. */
27 #define min(x, y) ((x) <= (y) ? (x) : (y))
28 #define max(x, y) ((x) >= (y) ? (x) : (y))
29 #define abs(a) ((a) < 0 ? -(a) : (a))
37 * XMenu internal event handler variable.
39 extern int (*_XMEventHandler
)();
42 #define Pixel unsigned long
46 * Internal routine declarations.
48 int _XMWinQueInit(); /* No value actually returned. */
49 int _XMWinQueAddPane();
50 int _XMWinQueAddSelection();
52 XMPane
*_XMGetPanePtr();
53 XMSelect
*_XMGetSelectionPtr();
54 int _XMRecomputeGlobals(); /* No value actually returned. */
55 int _XMRecomputePane();
56 int _XMRecomputeSelection();
57 int _XMTransToOrigin(); /* No value actually returned. */
58 int _XMRefreshPane(); /* No value actually returned. */
59 int _XMRefreshSelections(); /* No value actually returned. */
60 int _XMHighlightSelection(); /* No value actually returned. */
63 /* Don't add stuff after this #endif */