source: roaraudio/roard/include/light.h @ 5381:430b1d26e12d

Last change on this file since 5381:430b1d26e12d was 5381:430b1d26e12d, checked in by phi, 12 years ago

updated copyright years

File size: 1.5 KB
RevLine 
[1816]1//light.h:
2
3/*
[5381]4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2012
[1816]5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
[3517]21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
[1816]23 *
24 */
25
26#ifndef _LIGHT_H_
27#define _LIGHT_H_
28
29#include <roaraudio.h>
30
[2495]31#ifndef ROAR_WITHOUT_DCOMP_LIGHT
32
[1923]33#define LIGHT_CHANNELS_DEFAULT 512 /* one DMX Universe */
34
[5194]35extern struct light_state {
[1817]36 unsigned int    channels;
37 unsigned char * state;
[1966]38 unsigned char * changes;
[1817]39} g_light_state;
40
[5194]41extern struct light_mixer {
[2944]42 int stream;
43} g_light_mixer;
44
[5210]45int light_init  (uint32_t channels);
[1817]46int light_free  (void);
47
48int light_update(void);
49int light_reset (void);
[1966]50int light_reinit(void);
[1817]51
[1821]52int light_check_stream  (int id);
53int light_send_stream   (int id);
54
[1816]55#endif
56
[2495]57#endif
58
[1816]59//ll
Note: See TracBrowser for help on using the repository browser.