output/httpd: rename struct httpd_output

This commit is contained in:
Max Kellermann
2013-01-27 23:21:39 +01:00
parent 2cbe21c791
commit 27f8ef2f33
4 changed files with 33 additions and 33 deletions

View File

@@ -38,7 +38,7 @@
class HttpdClient;
struct httpd_output {
struct HttpdOutput {
struct audio_output base;
/**
@@ -128,7 +128,7 @@ struct httpd_output {
* Removes a client from the httpd_output.clients linked list.
*/
void
httpd_output_remove_client(struct httpd_output *httpd,
httpd_output_remove_client(struct HttpdOutput *httpd,
HttpdClient *client);
/**
@@ -136,7 +136,7 @@ httpd_output_remove_client(struct httpd_output *httpd,
* the response headers have been sent.
*/
void
httpd_output_send_header(struct httpd_output *httpd,
httpd_output_send_header(struct HttpdOutput *httpd,
HttpdClient *client);
#endif