~ubuntu-branches/ubuntu/saucy/glib2.0/saucy-proposed

« back to all changes in this revision

Viewing changes to glib/glib-private.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2013-09-18 11:49:30 UTC
  • mfrom: (1.63.26) (172.1.16 experimental)
  • Revision ID: package-import@ubuntu.com-20130918114930-25x6p3ytts9nnlvd
Tags: 2.37.93-1ubuntu1
* Rebase on Debian experimental, remaining changes:
  + Build-Depend on python:any for cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
gchar *_glib_get_locale_dir    (void);
34
34
#endif
35
35
 
 
36
GDir * g_dir_open_with_errno (const gchar *path, guint flags);
 
37
GDir * g_dir_new_from_dirp (gpointer dirp);
 
38
 
36
39
#define GLIB_PRIVATE_CALL(symbol) (glib__private__()->symbol)
37
40
 
38
41
typedef struct {
49
52
 
50
53
  gboolean              (* g_check_setuid)              (void);
51
54
  GMainContext *        (* g_main_context_new_with_next_id) (guint next_id);
 
55
 
 
56
  GDir *                (* g_dir_open_with_errno)       (const gchar *path,
 
57
                                                         guint        flags);
 
58
  GDir *                (* g_dir_new_from_dirp)         (gpointer dirp);
 
59
 
52
60
  /* Add other private functions here, initialize them in glib-private.c */
53
61
} GLibPrivateVTable;
54
62