diff options
author | Benjamin Otte <otte@redhat.com> | 2011-11-01 20:11:47 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2011-11-16 17:19:02 +0100 |
commit | 1985d54bb2eee39e88e62d1b749bf85f43a55721 (patch) | |
tree | 89f8bbc0e3a7fc9b03271eb124fc3b8f0befa423 /gio/gfileinfo.h | |
parent | 60c42f66482f0b3c7cd9353156de99e077fc73c7 (diff) | |
download | glib-1985d54bb2eee39e88e62d1b749bf85f43a55721.tar.gz |
fileinfo: Add g_file_attribute_matcher_subtract()
Added as public API so I can write tests, the use case is local.
Diffstat (limited to 'gio/gfileinfo.h')
-rw-r--r-- | gio/gfileinfo.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gio/gfileinfo.h b/gio/gfileinfo.h index e276518e2..952dade01 100644 --- a/gio/gfileinfo.h +++ b/gio/gfileinfo.h @@ -939,6 +939,8 @@ GType g_file_attribute_matcher_get_type (void) G_GNUC_CON GFileAttributeMatcher *g_file_attribute_matcher_new (const char *attributes); GFileAttributeMatcher *g_file_attribute_matcher_ref (GFileAttributeMatcher *matcher); void g_file_attribute_matcher_unref (GFileAttributeMatcher *matcher); +GFileAttributeMatcher *g_file_attribute_matcher_subtract (GFileAttributeMatcher *matcher, + GFileAttributeMatcher *subtract); gboolean g_file_attribute_matcher_matches (GFileAttributeMatcher *matcher, const char *attribute); gboolean g_file_attribute_matcher_matches_only (GFileAttributeMatcher *matcher, |