mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-31 17:43:22 -05:00
20 lines
265 B
C
20 lines
265 B
C
|
|
#ifndef __HTTPD_DACP_H__
|
|
#define __HTTPD_DACP_H__
|
|
|
|
#include <event2/http.h>
|
|
|
|
int
|
|
dacp_init(void);
|
|
|
|
void
|
|
dacp_deinit(void);
|
|
|
|
void
|
|
dacp_request(struct evhttp_request *req);
|
|
|
|
int
|
|
dacp_is_request(struct evhttp_request *req, char *uri);
|
|
|
|
#endif /* !__HTTPD_DACP_H__ */
|