File: jack.h

package info (click to toggle)
xmms-jack 0.16-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,392 kB
  • ctags: 497
  • sloc: sh: 8,312; ansic: 2,517; makefile: 68
file content (16 lines) | stat: -rw-r--r-- 405 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _JACK_H
#define _JACK_H

#include <glib.h>

void jack_configure(void);

typedef struct
{
    gboolean isTraceEnabled; /* if true we will print debug information to the console */
    char *port_connection_mode; /* the port connection mode setting */
} jackconfig;

void jack_set_port_connection_mode(); /* called by jack_init() and the 'ok' handler in configure.c */

#endif /* #ifndef _JACK_H */