1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00
icecast-server/src/version.h
2023-06-03 18:43:01 +00:00

25 lines
577 B
C

/* Icecast
*
* This program is distributed under the GNU General Public License, version 2.
* A copy of this license is included with this source.
*
* Copyright 2023-2023, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>,
*/
#ifndef __VERSION_H__
#define __VERSION_H__
#include "icecasttypes.h"
typedef struct {
const char *name;
const char *compiletime;
const char *runtime;
} icecast_dependency_t;
const char * const * version_get_compiletime_flags(void);
const icecast_dependency_t * version_get_dependencies(void);
#endif /* __VERSION_H__ */