mirror of
https://github.com/openstreetmap/mod_tile.git
synced 2025-08-05 18:51:43 +00:00
17 lines
253 B
C
17 lines
253 B
C
#ifndef DAEMON_H
|
|
#define DEEMON_H
|
|
|
|
#include <limits.h> /* for PATH_MAX */
|
|
|
|
#include "protocol.h"
|
|
|
|
#define INILINE_MAX 256
|
|
|
|
typedef struct {
|
|
char xmlname[XMLCONFIG_MAX];
|
|
char xmlfile[PATH_MAX];
|
|
char xmluri[PATH_MAX];
|
|
} xmlconfigitem;
|
|
|
|
#endif
|