--- liblscp/trunk/lscp/event.h 2005/05/22 11:27:56 562 +++ liblscp/trunk/lscp/event.h 2006/11/28 22:46:32 952 @@ -2,7 +2,7 @@ // /**************************************************************************** liblscp - LinuxSampler Control Protocol API - Copyright (C) 2004, rncbc aka Rui Nuno Capela. All rights reserved. + Copyright (C) 2004-2006, rncbc aka Rui Nuno Capela. All rights reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public @@ -14,9 +14,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *****************************************************************************/ @@ -33,13 +33,14 @@ /** Subscribable event notification bit-wise flags. */ typedef enum _lscp_event_t { - LSCP_EVENT_NONE = 0x0000, - LSCP_EVENT_CHANNEL_COUNT = 0x0001, - LSCP_EVENT_VOICE_COUNT = 0x0002, - LSCP_EVENT_STREAM_COUNT = 0x0004, - LSCP_EVENT_BUFFER_FILL = 0x0008, - LSCP_EVENT_CHANNEL_INFO = 0x0010, - LSCP_EVENT_MISCELLANEOUS = 0x1000 + LSCP_EVENT_NONE = 0x0000, + LSCP_EVENT_CHANNEL_COUNT = 0x0001, + LSCP_EVENT_VOICE_COUNT = 0x0002, + LSCP_EVENT_STREAM_COUNT = 0x0004, + LSCP_EVENT_BUFFER_FILL = 0x0008, + LSCP_EVENT_CHANNEL_INFO = 0x0010, + LSCP_EVENT_TOTAL_VOICE_COUNT = 0x0020, + LSCP_EVENT_MISCELLANEOUS = 0x1000 } lscp_event_t;