root/branches/libfreebob-2.0/src/libstreaming/messagebuffer.h

Revision 199, 1.5 kB (checked in by pieterpalmers, 18 years ago)

- start of a new streaming API implementation, C++ based

Line 
1 /*
2  * Modifications for FreeBoB by Pieter Palmers
3         Copied from the jackd sources
4         function names changed in order to avoid naming problems when using this in
5         a jackd backend.
6  */
7  
8 /*
9  * messagebuffer.h -- realtime-safe message interface for jackd.
10  *
11  *  This function is included in libjack so backend drivers can use
12  *  it, *not* for external client processes.  The VERBOSE() and
13  *  MESSAGE() macros are realtime-safe.
14  */
15
16 /*
17  *  Copyright (C) 2004 Rui Nuno Capela, Steve Harris
18  * 
19  *  This program is free software; you can redistribute it and/or modify
20  *  it under the terms of the GNU Lesser General Public License as published by
21  *  the Free Software Foundation; either version 2.1 of the License, or
22  *  (at your option) any later version.
23  * 
24  *  This program is distributed in the hope that it will be useful,
25  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
26  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  *  GNU Lesser General Public License for more details.
28  * 
29  *  You should have received a copy of the GNU Lesser General Public License
30  *  along with this program; if not, write to the Free Software
31  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
32  *
33  */
34
35 #ifndef __FREEBOB_MESSAGEBUFFER_H__
36 #define __FREEBOB_MESSAGEBUFFER_H__
37
38 void freebob_messagebuffer_init();
39 void freebob_messagebuffer_exit();
40
41 void freebob_messagebuffer_add(const char *fmt, ...);
42
43 #endif /* __freebob_messagebuffer_h__ */
Note: See TracBrowser for help on using the browser.