There will actually be an "all" filter so this clashed.
openbox_openbox_LDFLAGS = -export-dynamic
openbox_openbox_SOURCES = \
gettext.h \
- openbox/actions/all.c \
- openbox/actions/all.h \
+ openbox/actions/_all.c \
+ openbox/actions/_all.h \
openbox/actions/addremovedesktop.c \
openbox/actions/breakchroot.c \
openbox/actions/close.c \
openbox/actions/showdesktop.c \
openbox/actions/showmenu.c \
openbox/actions/unfocus.c \
- openbox/filters/all.c \
- openbox/filters/all.h \
+ openbox/filters/_all.c \
+ openbox/filters/_all.h \
openbox/action.c \
openbox/action.h \
openbox/action_filter.c \
#include "openbox.h"
#include "debug.h"
-#include "actions/all.h"
+#include "actions/_all.h"
static void action_definition_ref(ObActionDefinition *def);
static void action_definition_unref(ObActionDefinition *def);
{
if (reconfig) return;
- actions_all_startup();
+ actions__all_startup();
}
void action_shutdown(gboolean reconfig)
#include "action_filter.h"
#include "gettext.h"
-#include "filters/all.h"
+#include "filters/_all.h"
typedef struct _ObActionFilterDefinition ObActionFilterDefinition;
void action_filter_startup(gboolean reconfig)
{
- filters_all_startup();
+ filters__all_startup();
}
void action_filter_shutdown(gboolean reconfig)
-#include "all.h"
+/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
-void actions_all_startup(void)
+ actions/_all.c for the Openbox window manager
+ Copyright (c) 2011 Dana Jansens
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ See the COPYING file for a copy of the GNU General Public License.
+*/
+
+#include "_all.h"
+
+void actions__all_startup(void)
{
action_execute_startup();
action_debug_startup();
-#ifndef __actions_all_h
-#define __actions_all_h
+/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
-void actions_all_startup(void);
+ actions/_all.h for the Openbox window manager
+ Copyright (c) 2011 Dana Jansens
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ See the COPYING file for a copy of the GNU General Public License.
+*/
+
+void actions__all_startup(void);
void action_execute_startup(void);
void action_debug_startup(void);
void action_movetoedge_startup(void);
void action_growtoedge_startup(void);
void action_focustobottom_startup(void);
-
-#endif
/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
- filters/all.c for the Openbox window manager
+ filters/_all.c for the Openbox window manager
Copyright (c) 2011 Dana Jansens
This program is free software; you can redistribute it and/or modify
See the COPYING file for a copy of the GNU General Public License.
*/
-#include "all.h"
+#include "_all.h"
-void filters_all_startup(void)
+void filters__all_startup(void)
{
/*filter_foo_startup();*/
}
/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
- filters/all.h for the Openbox window manager
+ filters/_all.h for the Openbox window manager
Copyright (c) 2011 Dana Jansens
This program is free software; you can redistribute it and/or modify
See the COPYING file for a copy of the GNU General Public License.
*/
-#ifndef __filters_all_h
-#define __filters_all_h
-
-void filters_all_startup(void);
+void filters__all_startup(void);
/*void filter_foo_startup(void);*/
-
-#endif