~ubuntu-branches/ubuntu/karmic/glib2.0/karmic-updates

« back to all changes in this revision

Viewing changes to gio/gfileattribute-priv.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-07 08:55:47 UTC
  • mfrom: (1.2.49 upstream)
  • Revision ID: james.westby@ubuntu.com-20090707085547-oma0yur1uaq4zmop
Tags: 2.21.3-0ubuntu1
* New upstream version:
  - GMappedFile is refcounted now
  - Mainloop: It is now possible to set per-thread default contexts,
    with g_main_context_push_thread_default.
  - glib-mkenums supports a @basename@ substitution, in addition
    to @filename@.
  - GIO:
    + Vfs implementations can support storing of per-file metadata.
    + GCancellable can now be subclassed.
    + Unmount and eject methods now optionally allow interaction, via
      variants that take a GMountOperation object.
  - Bugs fixed:
   556706 Inconsistent help arguments -h, -?
   579449 FileChoosers no longer work if an idle handler is active
   579933 mainloop FD_CLOEXEC has a race condition
   579984 alternate GMainContext support
   585937 gio/gsocket.c (glib 2.21.2) does not compile (Windows/mingw)
   586675 Runtime library location
   586797 Add GCancellables to GSocket ops
   586868 g_filename_complete_get_completions doesn't always return...
   587415 g_resolver_lookup_by_name_finish returns a freed list
   587434 regression tests fail, at least on x86_64
   586928 Avoid g++ warning in g_error()
  - Updated translations: Estonian, Hebrew
* Drop 00git_file_attr_stringv.patch, in upstream release now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
    guint64 uint64;
40
40
    char *string;
41
41
    GObject *obj;
 
42
    char **stringv;
42
43
  } u;
43
44
} GFileAttributeValue;
44
45
 
60
61
guint64              _g_file_attribute_value_get_uint64      (const GFileAttributeValue *attr);
61
62
gint64               _g_file_attribute_value_get_int64       (const GFileAttributeValue *attr);
62
63
GObject *            _g_file_attribute_value_get_object      (const GFileAttributeValue *attr);
 
64
char **              _g_file_attribute_value_get_stringv     (const GFileAttributeValue *attr);
63
65
 
64
66
void                 _g_file_attribute_value_set_from_pointer(GFileAttributeValue *attr,
65
67
                                                              GFileAttributeType   type,
81
83
                                                              gint64               value);
82
84
void                 _g_file_attribute_value_set_object      (GFileAttributeValue *attr,
83
85
                                                              GObject             *obj);
 
86
void                 _g_file_attribute_value_set_stringv     (GFileAttributeValue *attr,
 
87
                                                              char               **value);
84
88
 
85
89
 
86
90
GFileAttributeValue *_g_file_info_get_attribute_value (GFileInfo  *info,