1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* f.whatever function dispatcher
*/
#ifndef _CTWM_FUNCTIONS_H
#define _CTWM_FUNCTIONS_H
#include <stdbool.h>
/* All the outside world sees */
bool ExecuteFunction(int func, void *action, Window w, TwmWindow *tmp_win,
XEvent *eventp, int context, int pulldown);
/* Needed in events.c */
extern int ConstMove;
extern int ConstMoveDir;
extern int ConstMoveX;
extern int ConstMoveY;
void draw_info_window(void);
/* Leaks to a few places */
extern int RootFunction;
extern int MoveFunction;
extern bool WindowMoved;
extern int ResizeOrigX;
extern int ResizeOrigY;
#endif /* _CTWM_FUNCTIONS_H */
|