]> icculus.org git repositories - mikachu/openbox.git/blob - openbox/actions/stop.c
Merge branch 'work' into wip/mikabox
[mikachu/openbox.git] / openbox / actions / stop.c
1 #include "openbox/actions.h"
2
3 static gboolean run_func(ObActionsData *data, gpointer options);
4
5 void action_stop_startup(void)
6 {
7     actions_register("Stop", NULL, NULL, run_func, NULL, NULL);
8 }
9
10 /* return TRUE to stop other actions from running */
11 static gboolean run_func(ObActionsData *data, gpointer options)
12 {
13     return TRUE;
14 }