[kdbus] Do not set body message if signature field is empty
[platform/upstream/glib.git] / gio / gproxyresolver.h
index 391f902..994da01 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/>.
  *
  * Author: Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
  */
 
+#ifndef __G_PROXY_RESOLVER_H__
+#define __G_PROXY_RESOLVER_H__
+
 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
 #error "Only <gio/gio.h> can be included directly."
 #endif
 
-#ifndef __G_PROXY_RESOLVER_H__
-#define __G_PROXY_RESOLVER_H__
-
 #include <gio/giotypes.h>
 
 G_BEGIN_DECLS
@@ -40,15 +38,10 @@ G_BEGIN_DECLS
  * G_PROXY_RESOLVER_EXTENSION_POINT_NAME:
  *
  * Extension point for proxy resolving functionality.
- * See <link linkend="extending-gio">Extending GIO</link>.
+ * See [Extending GIO][extending-gio].
  */
 #define G_PROXY_RESOLVER_EXTENSION_POINT_NAME "gio-proxy-resolver"
 
-/**
- * GProxyResolver:
- *
- * Interface that can be used to resolve proxy address.
- */
 typedef struct _GProxyResolverInterface GProxyResolverInterface;
 
 struct _GProxyResolverInterface {
@@ -73,19 +66,25 @@ struct _GProxyResolverInterface {
                              GError              **error);
 };
 
+GLIB_AVAILABLE_IN_ALL
 GType          g_proxy_resolver_get_type       (void) G_GNUC_CONST;
+GLIB_AVAILABLE_IN_ALL
 GProxyResolver *g_proxy_resolver_get_default    (void);
 
+GLIB_AVAILABLE_IN_ALL
 gboolean        g_proxy_resolver_is_supported   (GProxyResolver       *resolver);
+GLIB_AVAILABLE_IN_ALL
 gchar        **g_proxy_resolver_lookup         (GProxyResolver       *resolver,
                                                 const gchar          *uri,
                                                 GCancellable         *cancellable,
                                                 GError              **error);
+GLIB_AVAILABLE_IN_ALL
 void           g_proxy_resolver_lookup_async   (GProxyResolver       *resolver,
                                                 const gchar          *uri,
                                                 GCancellable         *cancellable,
                                                 GAsyncReadyCallback   callback,
                                                 gpointer              user_data);
+GLIB_AVAILABLE_IN_ALL
 gchar        **g_proxy_resolver_lookup_finish  (GProxyResolver       *resolver,
                                                 GAsyncResult         *result,
                                                 GError              **error);