| 122 */ |
122 */ |
| 123 void |
123 void |
| 124 fb_http_params_free(FbHttpParams *params); |
124 fb_http_params_free(FbHttpParams *params); |
| 125 |
125 |
| 126 /** |
126 /** |
| 127 * fb_http_params_close: |
|
| 128 * @params: The #FbHttpParams. |
|
| 129 * @url: The URL or #NULL. |
|
| 130 * |
|
| 131 * Closes the #FbHttpParams by returning a string representing the HTTP |
|
| 132 * parameters. If @url is non-#NULL, then the parameters are appended |
|
| 133 * to the value of @url. This frees the #FbHttpParams. The returned |
|
| 134 * string should be freed with #g_free() when no longer needed. |
|
| 135 * |
|
| 136 * Returns: The string representation of the HTTP parameters. |
|
| 137 */ |
|
| 138 gchar * |
|
| 139 fb_http_params_close(FbHttpParams *params, const gchar *url); |
|
| 140 |
|
| 141 /** |
|
| 142 * fb_http_params_get_bool: |
127 * fb_http_params_get_bool: |
| 143 * @params: The #FbHttpParams. |
128 * @params: The #FbHttpParams. |
| 144 * @name: The parameter name. |
129 * @name: The parameter name. |
| 145 * @error: The return location for the #GError or #NULL. |
130 * @error: The return location for the #GError or #NULL. |
| 146 * |
131 * |