medit/moo/mooutils/mooutils-file.h

31 lines
621 B
C
Raw Normal View History

2016-01-01 22:25:53 -08:00
#pragma once
2010-11-23 21:54:39 -08:00
#include <gio/gio.h>
#include <mooutils/mooarray.h>
G_BEGIN_DECLS
2010-12-12 02:29:20 -08:00
MOO_DECLARE_OBJECT_ARRAY_FULL (MooFileArray, moo_file_array, GFile)
2010-11-23 21:54:39 -08:00
2013-04-20 22:14:56 -07:00
G_INLINE_FUNC void
2010-11-23 21:54:39 -08:00
moo_file_free (GFile *file)
{
if (file)
g_object_unref (file);
}
gboolean moo_file_fnmatch (GFile *file,
const char *glob);
char *moo_file_get_display_name (GFile *file);
G_END_DECLS
2016-01-01 22:25:53 -08:00
#ifdef __cplusplus
#include <moocpp/strutils.h>
2016-01-02 07:09:54 -08:00
#include <moocpp/gobjptrtypes-gio.h>
2016-01-01 22:25:53 -08:00
2016-01-02 07:09:54 -08:00
moo::mg_str moo_file_get_display_name (const moo::gobjref<GFile>& file);
2016-01-01 22:25:53 -08:00
#endif // __cplusplus