mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-06 07:58:44 +02:00
various: add GLIB_AVAILABLE_IN_ALL everywhere else
Add the GLIB_AVAILABLE_IN_ALL annotation to all old functions (that haven't already been annotated with the GLIB_AVAILABLE_IN_* macros or a deprecation macro). If we discover in the future that we cannot use only one macro on Windows, it will be an easy sed patch to fix that. https://bugzilla.gnome.org/show_bug.cgi?id=688681
This commit is contained in:
@@ -57,50 +57,83 @@ typedef struct _GUnixMountMonitorClass GUnixMountMonitorClass;
|
||||
#define G_IS_UNIX_MOUNT_MONITOR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_UNIX_MOUNT_MONITOR))
|
||||
#define G_IS_UNIX_MOUNT_MONITOR_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_UNIX_MOUNT_MONITOR))
|
||||
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
void g_unix_mount_free (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
void g_unix_mount_point_free (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gint g_unix_mount_compare (GUnixMountEntry *mount1,
|
||||
GUnixMountEntry *mount2);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
const char * g_unix_mount_get_mount_path (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
const char * g_unix_mount_get_device_path (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
const char * g_unix_mount_get_fs_type (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mount_is_readonly (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mount_is_system_internal (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mount_guess_can_eject (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mount_guess_should_display (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
char * g_unix_mount_guess_name (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIcon * g_unix_mount_guess_icon (GUnixMountEntry *mount_entry);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIcon * g_unix_mount_guess_symbolic_icon (GUnixMountEntry *mount_entry);
|
||||
|
||||
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gint g_unix_mount_point_compare (GUnixMountPoint *mount1,
|
||||
GUnixMountPoint *mount2);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
const char * g_unix_mount_point_get_mount_path (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
const char * g_unix_mount_point_get_device_path (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
const char * g_unix_mount_point_get_fs_type (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_2_32
|
||||
const char * g_unix_mount_point_get_options (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mount_point_is_readonly (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mount_point_is_user_mountable (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mount_point_is_loopback (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mount_point_guess_can_eject (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
char * g_unix_mount_point_guess_name (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIcon * g_unix_mount_point_guess_icon (GUnixMountPoint *mount_point);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GIcon * g_unix_mount_point_guess_symbolic_icon (GUnixMountPoint *mount_point);
|
||||
|
||||
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GList * g_unix_mount_points_get (guint64 *time_read);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GList * g_unix_mounts_get (guint64 *time_read);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GUnixMountEntry *g_unix_mount_at (const char *mount_path,
|
||||
guint64 *time_read);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mounts_changed_since (guint64 time);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_mount_points_changed_since (guint64 time);
|
||||
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GType g_unix_mount_monitor_get_type (void) G_GNUC_CONST;
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
GUnixMountMonitor *g_unix_mount_monitor_new (void);
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
void g_unix_mount_monitor_set_rate_limit (GUnixMountMonitor *mount_monitor,
|
||||
int limit_msec);
|
||||
|
||||
GLIB_AVAILABLE_IN_ALL
|
||||
gboolean g_unix_is_mount_path_system_internal (const char *mount_path);
|
||||
|
||||
G_END_DECLS
|
||||
|
Reference in New Issue
Block a user