//rdtcs.c: /* * Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2009 * * This file is part of roard a part of RoarAudio, * a cross-platform sound system for both, home and professional use. * See README for details. * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 3 * as published by the Free Software Foundation. * * RoarAudio 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this software; see the file COPYING. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. * */ #include "roard.h" #ifndef ROAR_WITHOUT_DCOMP_RDTCS int rdtcs_init (void) { return 0; } int rdtcs_free (void) { return 0; } int rdtcs_init_config (void) { memset(&g_rdtcs, 0, sizeof(g_rdtcs)); strncpy(g_rdtcs.rds.ps, RDTCS_RDS_PS_DEFAULT, RDTCS_RDS_PS_LEN); g_rdtcs.rds.ps[RDTCS_RDS_PS_LEN] = 0; g_rdtcs.rds.pty = RDTCS_RDS_PTY_DEFAULT; g_rdtcs.rds.pi = RDTCS_RDS_PI_DEFAULT; return 0; } int rdtcs_check_stream (int id) { return -1; } int rdtcs_send_stream (int id) { return -1; } #endif //ll