Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenicy.h
Go to the documentation of this file.
00001 /* 00002 icy: support for SHOUTcast ICY meta info, an attempt to keep it organized 00003 00004 copyright 2006-7 by the mpg123 project - free software under the terms of the LGPL 2.1 00005 see COPYING and AUTHORS files in distribution or http://mpg123.org 00006 initially written by Thomas Orgis and modelled after patch by Honza 00007 */ 00008 #ifndef MPG123_ICY_H 00009 #define MPG123_ICY_H 00010 00011 #ifndef NO_ICY 00012 00013 #include "compat.h" 00014 #include "mpg123.h" 00015 00016 struct icy_meta 00017 { 00018 char* data; 00019 off_t interval; 00020 off_t next; 00021 }; 00022 00023 void init_icy(struct icy_meta *); 00024 void clear_icy(struct icy_meta *); 00025 void reset_icy(struct icy_meta *); 00026 00027 #else 00028 00029 #define init_icy(a) 00030 #define clear_icy(a) 00031 #define reset_icy(a) 00032 00033 #endif /* NO_ICY */ 00034 00035 #endif Generated on Mon May 28 2012 04:32:58 for ReactOS by
1.7.6.1
|