hook gvariant vectors up to kdbus
[platform/upstream/glib.git] / gio / gnetworkmonitor.h
index e525293..9cbb3c2 100644 (file)
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General
- * Public License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
- * Boston, MA 02111-1307, USA.
+ * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  */
 
+#ifndef __G_NETWORK_MONITOR_H__
+#define __G_NETWORK_MONITOR_H__
+
 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
 #error "Only <gio/gio.h> can be included directly."
 #endif
 
-#ifndef __G_NETWORK_MONITOR_H__
-#define __G_NETWORK_MONITOR_H__
-
 #include <gio/giotypes.h>
 
 G_BEGIN_DECLS
@@ -33,7 +31,7 @@ G_BEGIN_DECLS
  * G_NETWORK_MONITOR_EXTENSION_POINT_NAME:
  *
  * Extension point for network status monitoring functionality.
- * See <link linkend="extending-gio">Extending GIO</link>.
+ * See [Extending GIO][extending-gio].
  *
  * Since: 2.30
  */
@@ -66,20 +64,26 @@ struct _GNetworkMonitorInterface {
                                GError              **error);
 };
 
+GLIB_AVAILABLE_IN_2_32
 GType            g_network_monitor_get_type              (void) G_GNUC_CONST;
+GLIB_AVAILABLE_IN_2_32
 GNetworkMonitor *g_network_monitor_get_default           (void);
 
+GLIB_AVAILABLE_IN_ALL
 gboolean         g_network_monitor_get_network_available (GNetworkMonitor     *monitor);
 
+GLIB_AVAILABLE_IN_ALL
 gboolean         g_network_monitor_can_reach             (GNetworkMonitor     *monitor,
                                                          GSocketConnectable  *connectable,
                                                          GCancellable        *cancellable,
                                                          GError             **error);
+GLIB_AVAILABLE_IN_ALL
 void             g_network_monitor_can_reach_async       (GNetworkMonitor     *monitor,
                                                          GSocketConnectable  *connectable,
                                                          GCancellable        *cancellable,
                                                          GAsyncReadyCallback  callback,
                                                          gpointer             user_data);
+GLIB_AVAILABLE_IN_ALL
 gboolean         g_network_monitor_can_reach_finish      (GNetworkMonitor     *monitor,
                                                          GAsyncResult        *result,
                                                          GError             **error);