I don't know who thought it was a good idea to have a separate header file for exactly ONE function prototype, but it's not. it's a terrible idea, and you should feel terrible for having it.

SVN revision: 76655
This commit is contained in:
Mike Blumenkrantz 2012-09-14 10:19:51 +00:00
parent 33746eeffe
commit 660ee97666
5 changed files with 2 additions and 13 deletions

View File

@ -22,7 +22,6 @@ module_la_SOURCES = e_mod_main.c \
e_mod_menu.c \
e_mod_main.h \
e_mod_config.c \
e_mod_config.h \
e_mod_dbus.c \
e_mod_dbus.h \
e_fwin.c \

View File

@ -1,6 +1,5 @@
#include "e.h"
#include "e_mod_main.h"
#include "e_mod_config.h"
#include "e_fm_device.h"
struct _E_Config_Dialog_Data

View File

@ -1,10 +0,0 @@
#ifdef E_TYPEDEFS
#else
#ifndef E_MOD_CONFIG_H
#define E_MOD_CONFIG_H
E_Config_Dialog *e_int_config_fileman(E_Container *con, const char *params __UNUSED__);
#endif
#endif

View File

@ -1,7 +1,6 @@
#include "e.h"
#include "e_fm_device.h"
#include "e_mod_main.h"
#include "e_mod_config.h"
#include "e_mod_dbus.h"
/* actual module specifics */

View File

@ -122,6 +122,8 @@ Fileman_Path *e_mod_fileman_path_find(E_Zone *zone);
void e_mod_menu_add(E_Menu *m);
E_Config_Dialog *e_int_config_fileman(E_Container *con, const char *params __UNUSED__);
/**
* @addtogroup Optional_Fileman
* @{