app/Makefile.am removed.
2001-05-10 Michael Natterer <mitch@gimp.org> * app/Makefile.am * app/asupsample.[ch]: removed. * app/core/Makefile.am * app/core/core-types.h * app/tools/Makefile.am * app/tools/tools-types.h: new files. * app/tools/gimptoolinfo.[ch]: removed. * app/core/gimptoolinfo.[ch]: added here. * libgimp/Makefile.am * libgimp/gimp.h * libgimp/gimpadaptivesupersample.[ch] * libgimp/gimpbilinear.[ch]: removed here... * libgimpcolor/Makefile.am * libgimpcolor/gimpcolortypes.h * libgimpcolor/gimpadaptivesupersample.[ch] * libgimpcolor/gimpbilinear.[ch]: ..and added here. * tools/pdbgen/app.pl * tools/pdbgen/pdb/paths.pdb * app/*.c: changed tons of #include's
This commit is contained in:
committed by
Michael Natterer
parent
c69de20f03
commit
d1022c34b6
@ -45,7 +45,7 @@
|
||||
#endif
|
||||
#endif /* G_OS_WIN32 */
|
||||
|
||||
#include "apptypes.h"
|
||||
#include "core/core-types.h"
|
||||
|
||||
#include "datafiles.h"
|
||||
#include "gimprc.h"
|
||||
@ -102,8 +102,8 @@ is_script (const gchar *filename)
|
||||
#endif
|
||||
|
||||
gboolean
|
||||
datafiles_check_extension (const gchar *filename,
|
||||
const gchar *extension)
|
||||
gimp_datafiles_check_extension (const gchar *filename,
|
||||
const gchar *extension)
|
||||
{
|
||||
gint name_len;
|
||||
gint ext_len;
|
||||
@ -121,10 +121,10 @@ datafiles_check_extension (const gchar *filename,
|
||||
}
|
||||
|
||||
void
|
||||
datafiles_read_directories (const gchar *path_str,
|
||||
GimpDataFileFlags flags,
|
||||
GimpDataFileLoaderFunc loader_func,
|
||||
gpointer loader_data)
|
||||
gimp_datafiles_read_directories (const gchar *path_str,
|
||||
GimpDataFileFlags flags,
|
||||
GimpDataFileLoaderFunc loader_func,
|
||||
gpointer loader_data)
|
||||
{
|
||||
gchar *local_path;
|
||||
GList *path;
|
||||
@ -196,7 +196,7 @@ datafiles_read_directories (const gchar *path_str,
|
||||
}
|
||||
|
||||
time_t
|
||||
datafile_atime (void)
|
||||
gimp_datafile_atime (void)
|
||||
{
|
||||
if (filestat_valid)
|
||||
return filestat.st_atime;
|
||||
@ -205,7 +205,7 @@ datafile_atime (void)
|
||||
}
|
||||
|
||||
time_t
|
||||
datafile_mtime (void)
|
||||
gimp_datafile_mtime (void)
|
||||
{
|
||||
if (filestat_valid)
|
||||
return filestat.st_mtime;
|
||||
@ -214,7 +214,7 @@ datafile_mtime (void)
|
||||
}
|
||||
|
||||
time_t
|
||||
datafile_ctime (void)
|
||||
gimp_datafile_ctime (void)
|
||||
{
|
||||
if (filestat_valid)
|
||||
return filestat.st_ctime;
|
||||
|
||||
Reference in New Issue
Block a user