File: mod_debug.h

package info (click to toggle)
irmp3 0.4.3pre6-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 584 kB
  • ctags: 374
  • sloc: ansic: 3,955; makefile: 212; pascal: 39
file content (29 lines) | stat: -rw-r--r-- 637 bytes parent folder | download
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
/*************************************************************************
 * $Id: mod_debug.h,v 1.5 2000/04/04 23:37:34 dpotter Exp $
 *
 * mod_debug.h -- A sample module for IRMP3
 *
 * Copyright (C) by Andreas Neuhaus <andy@fasta.fh-dortmund.de>
 *
 */

#ifndef __MOD_DEBUG_H__
#define __MOD_DEBUG_H__


void mod_debug_poll (int fd);
void mod_debug_message (int msgtype, char *message);

char *mod_debug_init (void);
void mod_debug_deinit (void);
char *mod_debug_reload (void);

int	watchfd;
fd_set	mod_debug_fdset;


#endif /* __MOD_DEBUG_H__ */

/*************************************************************************
 * EOF
 */