docs: fix up docs issues in gio/

This commit is contained in:
Xavier Claessens
2015-02-05 16:20:43 +01:00
committed by Ryan Lortie
parent 6a97275c45
commit 74c22150cf
49 changed files with 385 additions and 26 deletions

View File

@@ -48,6 +48,22 @@
* Since: 2.32
*/
/**
* GNetworkMonitorInterface:
* @g_iface: The parent interface.
* @network_changed: the virtual function pointer for the
* GNetworkMonitor::network-changed signal.
* @can_reach: the virtual function pointer for g_network_monitor_can_reach()
* @can_reach_async: the virtual function pointer for
* g_network_monitor_can_reach_async()
* @can_reach_finish: the virtual function pointer for
* g_network_monitor_can_reach_finish()
*
* The virtual function table for #GNetworkMonitor.
*
* Since: 2.32
*/
G_DEFINE_INTERFACE_WITH_CODE (GNetworkMonitor, g_network_monitor, G_TYPE_OBJECT,
g_type_interface_add_prerequisite (g_define_type_id, G_TYPE_INITABLE);)