client.h | client.h | |||
---|---|---|---|---|
// client.h | // client.h | |||
// | // | |||
/************************************************************************** ** | /************************************************************************** ** | |||
liblscp - LinuxSampler Control Protocol API | liblscp - LinuxSampler Control Protocol API | |||
Copyright (C) 2004, rncbc aka Rui Nuno Capela. All rights reserved. | Copyright (C) 2004-2005, rncbc aka Rui Nuno Capela. All rights reserved. | |||
This library is free software; you can redistribute it and/or | This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Lesser General Public | modify it under the terms of the GNU Lesser General Public | |||
License as published by the Free Software Foundation; either | License as published by the Free Software Foundation; either | |||
version 2.1 of the License, or (at your option) any later version. | version 2.1 of the License, or (at your option) any later version. | |||
This library is distributed in the hope that it will be useful, | This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Lesser General Public License for more details. | Lesser General Public License for more details. | |||
skipping to change at line 58 | skipping to change at line 58 | |||
/** Channel info cache struct. */ | /** Channel info cache struct. */ | |||
typedef struct _lscp_channel_info_t | typedef struct _lscp_channel_info_t | |||
{ | { | |||
char * engine_name; | char * engine_name; | |||
int audio_device; | int audio_device; | |||
int audio_channels; | int audio_channels; | |||
char ** audio_routing; | char ** audio_routing; | |||
char * instrument_file; | char * instrument_file; | |||
int instrument_nr; | int instrument_nr; | |||
char * instrument_name; | ||||
int instrument_status; | int instrument_status; | |||
int midi_device; | int midi_device; | |||
int midi_port; | int midi_port; | |||
int midi_channel; | int midi_channel; | |||
float volume; | float volume; | |||
} lscp_channel_info_t; | } lscp_channel_info_t; | |||
/** Buffer fill cache struct. */ | /** Buffer fill cache struct. */ | |||
typedef struct _lscp_buffer_fill_t | typedef struct _lscp_buffer_fill_t | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added | |||
version.h | version.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
You should have received a copy of the GNU Lesser General Public | You should have received a copy of the GNU Lesser General Public | |||
License along with this library; if not, write to the Free Software | License along with this library; if not, write to the Free Software | |||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
*************************************************************************** **/ | *************************************************************************** **/ | |||
#ifndef __LSCP_VERSION_H | #ifndef __LSCP_VERSION_H | |||
#define __LSCP_VERSION_H | #define __LSCP_VERSION_H | |||
#define LSCP_PACKAGE "liblscp" | #define LSCP_PACKAGE "liblscp" | |||
#define LSCP_VERSION "0.2.4" | #define LSCP_VERSION "0.2.5" | |||
#endif // __LSCP_VERSION_H | #endif // __LSCP_VERSION_H | |||
// end of version.h | // end of version.h | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||