~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to functions.h

  • Committer: Matthew Fuller
  • Date: 2016-08-16 10:37:18 UTC
  • mfrom: (514.2.49 build)
  • Revision ID: fullermd@over-yonder.net-20160816103718-7ay3cpxxzlkaw1er
Implement a parallel minimal build system, which can at least yield a
runnable ctwm in situations where the cmake chain is unavailable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#define _CTWM_FUNCTIONS_H
7
7
 
8
8
/* All the outside world sees */
9
 
/* x-ref EF_FULLPROTO in functions_internal.h; keep sync */
10
 
void ExecuteFunction(int func, void *action, Window w, TwmWindow *tmp_win,
 
9
bool ExecuteFunction(int func, void *action, Window w, TwmWindow *tmp_win,
11
10
                     XEvent *eventp, int context, bool pulldown);
12
11
 
13
12
 
17
16
        MOVE_HORIZ,
18
17
} CMoveDir;
19
18
 
20
 
/* From functions_win_moveresize.c: needed in event_handlers.c */
 
19
/* Needed in events.c */
21
20
extern bool ConstMove;
22
21
extern CMoveDir ConstMoveDir;
23
22
extern int ConstMoveX;
24
23
extern int ConstMoveY;
25
24
 
26
 
 
27
 
/* From functions_identify.c: needed in event_handlers.c */
28
25
void draw_info_window(void);
29
26
 
30
27