diff options
author | Alexander Larsson <alexl@redhat.com> | 2007-12-14 15:56:56 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2007-12-14 15:56:56 +0000 |
commit | f5063650794c987868830241a630993e624eabd9 (patch) | |
tree | 284ecd8560cd24aac08acf42316ae38ba38c6259 /gio/gunixmounts.c | |
parent | 2ceae92eeb706d21b06a59418a6b3cbcc41f4faa (diff) |
Move GFileAttributeValue to a private header, as its sort of ugly.
2007-12-14 Alexander Larsson <alexl@redhat.com>
* 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
Diffstat (limited to 'gio/gunixmounts.c')
-rw-r--r-- | gio/gunixmounts.c | 10 |
1 files changed, 5 insertions, 5 deletions
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); |