| 33328:c71e5e8976ba | 33329:cf23e0f1861a |
|---|---|
| 1 // source: http://toxygen.net/libgadu/ | |
| 2 | |
| 3 #ifndef _GGP_OAUTH_PARAMETER_H | |
| 4 #define _GGP_OAUTH_PARAMETER_H | |
| 5 | |
| 6 #include <internal.h> | |
| 7 | |
| 8 typedef struct gg_oauth_parameter gg_oauth_parameter_t; | |
| 9 | |
| 10 int gg_oauth_parameter_set(gg_oauth_parameter_t **list, const char *key, const char *value); | |
| 11 char *gg_oauth_parameter_join(gg_oauth_parameter_t *list, int header); | |
| 12 void gg_oauth_parameter_free(gg_oauth_parameter_t *list); | |
| 13 | |
| 14 #endif /* _GGP_OAUTH_PARAMETER_H */ |