From f5063650794c987868830241a630993e624eabd9 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Fri, 14 Dec 2007 15:56:56 +0000 Subject: Move GFileAttributeValue to a private header, as its sort of ugly. 2007-12-14 Alexander Larsson * Makefile.am: * gfileattribute.[ch]: * gfileattribute-priv.h: Move GFileAttributeValue to a private header, as its sort of ugly. * gfile.[ch]: Make set_attribute take a type + a pointer instead of a GFileAttributeValue. * gfileinfo.[ch]: Fix up for above changes. Add g_file_info_get_attribute_data to get all info in one call, g_file_info_get_attribute_status to get the status and g_file_info_get_attribute_as_string. * gio.symbols: * glocalfile.c: * glocalfileinfo.[ch]: Update for changes * gunixmounts.c: Make _guess_type static. svn path=/trunk/; revision=6129 --- gio/gunixmounts.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'gio/gunixmounts.c') diff --git a/gio/gunixmounts.c b/gio/gunixmounts.c index 51db6dc4d..61ca2cf44 100644 --- a/gio/gunixmounts.c +++ b/gio/gunixmounts.c @@ -63,7 +63,7 @@ static const char *_resolve_dev_root (void); * **/ -/** +/* * GUnixMountType: * @G_UNIX_MOUNT_TYPE_UNKNOWN: Unknown UNIX mount type. * @G_UNIX_MOUNT_TYPE_FLOPPY: Floppy disk UNIX mount type. @@ -1622,7 +1622,7 @@ guess_mount_type (const char *mount_path, return type; } -/** +/* * g_unix_mount_guess_type: * @mount_entry: a #GUnixMount. * @@ -1631,7 +1631,7 @@ guess_mount_type (const char *mount_path, * * Returns: a #GUnixMountType. **/ -GUnixMountType +static GUnixMountType g_unix_mount_guess_type (GUnixMountEntry *mount_entry) { g_return_val_if_fail (mount_entry != NULL, G_UNIX_MOUNT_TYPE_UNKNOWN); @@ -1644,7 +1644,7 @@ g_unix_mount_guess_type (GUnixMountEntry *mount_entry) mount_entry->filesystem_type); } -/** +/* * g_unix_mount_point_guess_type: * @mount_point: a #GUnixMountPoint. * @@ -1653,7 +1653,7 @@ g_unix_mount_guess_type (GUnixMountEntry *mount_entry) * * Returns: a #GUnixMountType. **/ -GUnixMountType +static GUnixMountType g_unix_mount_point_guess_type (GUnixMountPoint *mount_point) { g_return_val_if_fail (mount_point != NULL, G_UNIX_MOUNT_TYPE_UNKNOWN); -- cgit v1.2.3