diff options
author | Ignacio Casal Quinteiro <icq@gnome.org> | 2015-10-26 15:49:03 +0100 |
---|---|---|
committer | Ignacio Casal Quinteiro <icq@gnome.org> | 2015-11-09 09:54:31 +0100 |
commit | 6bd5d97189ea5336e3fdc53244565d7db028ae0e (patch) | |
tree | 7c8c149b3d5aa674e1970ba5fd073274dd2347ec /libsoup/soup-xmlrpc-old.h | |
parent | 30bd9de7dea3bdffbcfbc7a704046d79354a003f (diff) | |
download | libsoup-6bd5d97189ea5336e3fdc53244565d7db028ae0e.tar.gz |
Mark all remaining methods with SOUP_AVAILABLE_IN_2_4
This way we can as well redefine _SOUP_EXTERN on msvc builds
with the right extern value needed for it. This is the same
we do on glib and gtk+
https://bugzilla.gnome.org/show_bug.cgi?id=757146
Diffstat (limited to 'libsoup/soup-xmlrpc-old.h')
-rw-r--r-- | libsoup/soup-xmlrpc-old.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libsoup/soup-xmlrpc-old.h b/libsoup/soup-xmlrpc-old.h index 47ab15cb..1f486eff 100644 --- a/libsoup/soup-xmlrpc-old.h +++ b/libsoup/soup-xmlrpc-old.h @@ -11,19 +11,23 @@ G_BEGIN_DECLS /* XML-RPC client */ +SOUP_AVAILABLE_IN_2_4 SOUP_DEPRECATED_IN_2_52_FOR(soup_xmlrpc_build_request) char *soup_xmlrpc_build_method_call (const char *method_name, GValue *params, int n_params); +SOUP_AVAILABLE_IN_2_4 SOUP_DEPRECATED_IN_2_52_FOR(soup_xmlrpc_message_new) SoupMessage *soup_xmlrpc_request_new (const char *uri, const char *method_name, ...); +SOUP_AVAILABLE_IN_2_4 SOUP_DEPRECATED_IN_2_52_FOR(soup_xmlrpc_parse_response) gboolean soup_xmlrpc_parse_method_response (const char *method_response, int length, GValue *value, GError **error); +SOUP_AVAILABLE_IN_2_4 SOUP_DEPRECATED_IN_2_52_FOR(soup_xmlrpc_parse_response) gboolean soup_xmlrpc_extract_method_response (const char *method_response, int length, @@ -32,22 +36,27 @@ gboolean soup_xmlrpc_extract_method_response (const char *method_response, ...); /* XML-RPC server */ +SOUP_AVAILABLE_IN_2_4 SOUP_DEPRECATED_IN_2_52_FOR(soup_xmlrpc_parse_request) gboolean soup_xmlrpc_parse_method_call (const char *method_call, int length, char **method_name, GValueArray **params); +SOUP_AVAILABLE_IN_2_4 SOUP_DEPRECATED_IN_2_52_FOR(soup_xmlrpc_parse_request) gboolean soup_xmlrpc_extract_method_call (const char *method_call, int length, char **method_name, ...); +SOUP_AVAILABLE_IN_2_4 SOUP_DEPRECATED_IN_2_52_FOR(soup_xmlrpc_build_response) char *soup_xmlrpc_build_method_response (GValue *value); +SOUP_AVAILABLE_IN_2_4 SOUP_DEPRECATED_IN_2_52_FOR(soup_xmlrpc_message_set_response) void soup_xmlrpc_set_response (SoupMessage *msg, GType type, ...); +SOUP_AVAILABLE_IN_2_4 SOUP_DEPRECATED_IN_2_52_FOR(soup_xmlrpc_message_set_fault) void soup_xmlrpc_set_fault (SoupMessage *msg, int fault_code, |