mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2025-01-03 14:56:36 -05:00
Feature: Added stub files for refobject lists
This commit is contained in:
parent
bb33f86bc9
commit
5d5424d688
@ -20,12 +20,14 @@ pkginclude_HEADERS = \
|
||||
include/igloo/ro.h \
|
||||
include/igloo/types.h \
|
||||
include/igloo/typedef.h \
|
||||
include/igloo/buffer.h
|
||||
include/igloo/buffer.h \
|
||||
include/igloo/list.h
|
||||
|
||||
libigloo_la_SOURCES = \
|
||||
src/libigloo.c \
|
||||
src/ro.c \
|
||||
src/buffer.c
|
||||
src/buffer.c \
|
||||
src/list.c
|
||||
libigloo_la_LIBADD = \
|
||||
avl/libiceavl.la \
|
||||
httpp/libicehttpp.la \
|
||||
|
30
include/igloo/list.h
Normal file
30
include/igloo/list.h
Normal file
@ -0,0 +1,30 @@
|
||||
/* Copyright (C) 2018 Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef _LIBIGLOO__LIST_H_
|
||||
#define _LIBIGLOO__LIST_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
23
src/list.c
Normal file
23
src/list.c
Normal file
@ -0,0 +1,23 @@
|
||||
/* Copyright (C) 2018 Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <igloo/list.h>
|
Loading…
Reference in New Issue
Block a user