mirror of https://github.com/GNOME/gimp.git
plug-ins: rename file-raw/file-formats.h to file-raw/file-raw-formats.h
This commit is contained in:
parent
b58985da38
commit
42f0db190f
|
@ -33,19 +33,19 @@ libexec_PROGRAMS = \
|
|||
|
||||
file_darktable_SOURCES = \
|
||||
file-darktable.c \
|
||||
file-raw-formats.h \
|
||||
file-raw-utils.c \
|
||||
file-raw-utils.h \
|
||||
file-formats.h
|
||||
file-raw-utils.h
|
||||
|
||||
file_rawtherapee_SOURCES = \
|
||||
file-rawtherapee.c \
|
||||
file-raw-formats.h \
|
||||
file-raw-utils.c \
|
||||
file-raw-utils.h \
|
||||
file-formats.h
|
||||
file-raw-utils.h
|
||||
|
||||
file_raw_placeholder_SOURCES = \
|
||||
file-raw-placeholder.c \
|
||||
file-formats.h
|
||||
file-raw-formats.h \
|
||||
file-raw-placeholder.c
|
||||
|
||||
file_darktable_LDADD = \
|
||||
$(libgimp) \
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
|
||||
#include "file-formats.h"
|
||||
#include "file-raw-formats.h"
|
||||
#include "file-raw-utils.h"
|
||||
|
||||
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
|
||||
#include "file-formats.h"
|
||||
#include "file-raw-formats.h"
|
||||
|
||||
|
||||
static void query (void);
|
||||
|
|
|
@ -20,9 +20,6 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <libgimp/gimp.h>
|
||||
#include <file-raw-utils.h>
|
||||
|
||||
#ifdef GDK_WINDOWING_QUARTZ
|
||||
#include <CoreServices/CoreServices.h>
|
||||
#endif
|
||||
|
@ -31,6 +28,11 @@
|
|||
#include <Windows.h>
|
||||
#endif
|
||||
|
||||
#include <libgimp/gimp.h>
|
||||
|
||||
#include "file-raw-utils.h"
|
||||
|
||||
|
||||
gchar *
|
||||
file_raw_get_executable_path (const gchar *main_executable,
|
||||
const gchar *suffix,
|
||||
|
|
|
@ -18,9 +18,14 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __FILE_RAW_UTILS_H__
|
||||
#define __FILE_RAW_UTILS_H__
|
||||
|
||||
gchar * file_raw_get_executable_path (const gchar *main_executable,
|
||||
const gchar *suffix,
|
||||
const gchar *env_variable,
|
||||
const gchar *mac_bundle_id,
|
||||
const gchar *win32_registry_key_base,
|
||||
gboolean *search_path);
|
||||
|
||||
#endif /* __FILE_RAW_UTILS_H__ */
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
|
||||
#include "file-formats.h"
|
||||
#include "file-raw-formats.h"
|
||||
#include "file-raw-utils.h"
|
||||
|
||||
|
||||
|
|
|
@ -117,7 +117,7 @@ plug-ins/file-psd/psd-thumb-load.c
|
|||
plug-ins/file-psd/psd-util.c
|
||||
plug-ins/file-psd/psd.c
|
||||
plug-ins/file-raw/file-darktable.c
|
||||
plug-ins/file-raw/file-formats.h
|
||||
plug-ins/file-raw/file-raw-formats.h
|
||||
plug-ins/file-raw/file-raw-placeholder.c
|
||||
plug-ins/file-raw/file-rawtherapee.c
|
||||
plug-ins/file-sgi/sgi.c
|
||||
|
|
Loading…
Reference in New Issue