mod_musicindex  1.4.1
html.h
Go to the documentation of this file.
1 /*
2  * html.h
3  * mod_musicindex
4  *
5  * $Id: html.h 1005 2012-07-31 12:54:59Z varenet $
6  *
7  * Created by Thibaut VARENE on Thu Mar 20 2003.
8  * Copyright (c) 2003-2004 Regis BOUDIN
9  * Copyright (c) 2003-2004 Thibaut VARENE
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 2.1,
13  * as published by the Free Software Foundation.
14  *
15  */
16 
17 #ifndef HTML_H
18 #define HTML_H
19 
20 #include "mod_musicindex.h"
21 
22 #define MAX_PREFIX 512
24 void send_head(request_rec *);
25 void send_directories(request_rec *, const mu_pack *const);
26 void send_tracks(request_rec *, const mu_pack *const);
27 void send_customlist(request_rec *, const mu_pack *const);
28 void send_playlist(request_rec *, const mu_pack *const);
29 void send_rss(request_rec *, const mu_pack *const);
30 void send_randomdir(request_rec *);
31 void send_foot(request_rec *, const STRUCTTV *, const STRUCTTV *);
32 
33 #endif /* HTML_H */