--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libpurple/protocols/gg/oauth/oauth-parameter.h Mon Aug 06 13:16:32 2012 +0200 @@ -0,0 +1,14 @@ +// source: http://toxygen.net/libgadu/ + +#ifndef _GGP_OAUTH_PARAMETER_H +#define _GGP_OAUTH_PARAMETER_H + +#include <internal.h> + +typedef struct gg_oauth_parameter gg_oauth_parameter_t; + +int gg_oauth_parameter_set(gg_oauth_parameter_t **list, const char *key, const char *value); +char *gg_oauth_parameter_join(gg_oauth_parameter_t *list, int header); +void gg_oauth_parameter_free(gg_oauth_parameter_t *list); + +#endif /* _GGP_OAUTH_PARAMETER_H */