/[svn]/liblscp/trunk/lscp/event.h
ViewVC logotype

Contents of /liblscp/trunk/lscp/event.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 146 - (show annotations) (download) (as text)
Fri Jun 25 12:00:25 2004 UTC (19 years, 9 months ago) by capela
File MIME type: text/x-c++hdr
File size: 1858 byte(s)
* Major changes to server event protocol interface
  on attempt to comply with draft-protocol v.11.

1 // event.h
2 //
3 /****************************************************************************
4 liblscp - LinuxSampler Control Protocol API
5 Copyright (C) 2004, rncbc aka Rui Nuno Capela. All rights reserved.
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or (at your option) any later version.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
21 *****************************************************************************/
22
23 #ifndef __LSCP_EVENT_H
24 #define __LSCP_EVENT_H
25
26 #include "lscp/socket.h"
27
28 #if defined(__cplusplus)
29 extern "C" {
30 #endif
31
32
33 /** Subscribable event notification bit-wise flags. */
34 typedef enum _lscp_event_t
35 {
36 LSCP_EVENT_NONE = 0x0000,
37 LSCP_EVENT_CHANNELS = 0x0001,
38 LSCP_EVENT_VOICE_COUNT = 0x0002,
39 LSCP_EVENT_STREAM_COUNT = 0x0004,
40 LSCP_EVENT_BUFFER_FILL = 0x0008,
41 LSCP_EVENT_CHANNEL_INFO = 0x0010,
42 LSCP_EVENT_MISCELLANEOUS = 0x1000
43
44 } lscp_event_t;
45
46
47 //-------------------------------------------------------------------------
48 // Simple event helper functions.
49
50 const char * lscp_event_to_text ( lscp_event_t event );
51 lscp_event_t lscp_event_from_text ( const char *pszText );
52
53
54 #if defined(__cplusplus)
55 }
56 #endif
57
58 #endif // __LSCP_EVENT_H
59
60 // end of event.h

  ViewVC Help
Powered by ViewVC