mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-29 00:23:23 -05:00
19 lines
280 B
C
19 lines
280 B
C
#ifndef __HTTPD_ARTWORK_H__
|
|
#define __HTTPD_ARTWORK_H__
|
|
|
|
#include "httpd.h"
|
|
|
|
int
|
|
artworkapi_init(void);
|
|
|
|
void
|
|
artworkapi_deinit(void);
|
|
|
|
void
|
|
artworkapi_request(struct evhttp_request *req, struct httpd_uri_parsed *uri_parsed);
|
|
|
|
int
|
|
artworkapi_is_request(const char *path);
|
|
|
|
#endif
|