Mercurial > audlegacy-plugins
view src/cdaudio-ng/cdaudio-ng.h @ 2318:d7c321957be8
apply username/password changes 10 seconds after last keystroke in config editboxes
author | Tomasz Mon <desowin@gmail.com> |
---|---|
date | Tue, 15 Jan 2008 20:26:27 +0100 |
parents | dc92a550179e |
children | 0824c92b6132 |
line wrap: on
line source
/* * Audacious CD Digital Audio plugin * * Copyright (c) 2007 Calin Crisan <ccrisan@gmail.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; under version 3 of the License. * * This program 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 program. If not, see <http://www.gnu.org/licenses>. */ #ifndef CDAUDIO_NG_H #define CDAUDIO_NG_H #define DEF_STRING_LEN 256 #define CDDA_DEFAULT "cdda://default" #define CDDA_DAE_FRAMES 8 #define CDDA_DEFAULT_CDDB_SERVER "freedb.org" #define CDDA_DEFAULT_CDDB_PORT 8880 typedef struct { gchar performer[DEF_STRING_LEN]; gchar name[DEF_STRING_LEN]; gchar genre[DEF_STRING_LEN]; lsn_t startlsn; lsn_t endlsn; } trackinfo_t; typedef struct { lsn_t startlsn; lsn_t endlsn; lsn_t currlsn; lsn_t seektime; /* in miliseconds */ InputPlayback *pplayback; GThread *thread; } dae_params_t; #endif // CDAUDIO_NG_H