File: bad_list.h

package info (click to toggle)
somaplayer 0.5.2-2.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,668 kB
  • ctags: 2,521
  • sloc: ansic: 32,358; sh: 9,393; makefile: 858; yacc: 316; sed: 16
file content (37 lines) | stat: -rw-r--r-- 1,214 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* Somaplayer - Copyright (C) 2003-5 bakunin - Andrea Marchesini 
 *                                     <bakunin@autistici.org>
 *
 * This source code is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Public License as published 
 * by the Free Software Foundation; either version 2 of the License,
 * or (at your option) any later version.
 *
 * This source code 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.
 * Please refer to the GNU Public License for more details.
 *
 * You should have received a copy of the GNU Public License along with
 * this source code; if not, write to:
 * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 * This program is released under the GPL with the additional exemption that
 * compiling, linking, and/or using OpenSSL is allowed.
 */

#ifndef BAD_LIST_H
#define BAD_LIST_H

void bad_list_insert (audio *);

#define BAD_LIST_NULL		0
#define BAD_LIST_WORK		1
#define BAD_LIST_STOP		2
#define BAD_LIST_ATTENTION	3

#define BAD_LIST_TIMER		5
#define BAD_MAX_RETRY		5

#endif

/* EOF */