client.h | client.h | |||
---|---|---|---|---|
skipping to change at line 123 | skipping to change at line 123 | |||
lscp_status_t lscp_client_query (lscp_client_t *pCl ient, const char *pszQuery); | lscp_status_t lscp_client_query (lscp_client_t *pCl ient, const char *pszQuery); | |||
const char * lscp_client_get_result (lscp_client_t *pCl ient ); | const char * lscp_client_get_result (lscp_client_t *pCl ient ); | |||
int lscp_client_get_errno (lscp_client_t *pCl ient ); | int lscp_client_get_errno (lscp_client_t *pCl ient ); | |||
//------------------------------------------------------------------------- | //------------------------------------------------------------------------- | |||
// Client registration protocol functions. | // Client registration protocol functions. | |||
lscp_status_t lscp_client_subscribe (lscp_client_t *pCl ient, lscp_event_t events); | lscp_status_t lscp_client_subscribe (lscp_client_t *pCl ient, lscp_event_t events); | |||
lscp_status_t lscp_client_unsubscribe (lscp_client_t *pCl ient, lscp_event_t events); | lscp_status_t lscp_client_unsubscribe (lscp_client_t *pCl ient, lscp_event_t events); | |||
lscp_event_t lscp_client_events (lscp_client_t *pCl ient); | lscp_event_t lscp_client_get_events (lscp_client_t *pCl ient); | |||
//------------------------------------------------------------------------- | //------------------------------------------------------------------------- | |||
// Client command protocol functions. | // Client command protocol functions. | |||
lscp_status_t lscp_load_instrument (lscp_client_t *pCl ient, const char *pszFileName, int iInstrIndex, int iSamplerChannel); | lscp_status_t lscp_load_instrument (lscp_client_t *pCl ient, const char *pszFileName, int iInstrIndex, int iSamplerChannel); | |||
lscp_status_t lscp_load_instrument_non_modal (lscp_client_t *pCl ient, const char *pszFileName, int iInstrIndex, int iSamplerChannel); | lscp_status_t lscp_load_instrument_non_modal (lscp_client_t *pCl ient, const char *pszFileName, int iInstrIndex, int iSamplerChannel); | |||
lscp_status_t lscp_load_engine (lscp_client_t *pCl ient, const char *pszEngineName, int iSamplerChannel); | lscp_status_t lscp_load_engine (lscp_client_t *pCl ient, const char *pszEngineName, int iSamplerChannel); | |||
int lscp_get_channels (lscp_client_t *pCl ient); | int lscp_get_channels (lscp_client_t *pCl ient); | |||
int * lscp_list_channels (lscp_client_t *pCl ient); | int * lscp_list_channels (lscp_client_t *pCl ient); | |||
int lscp_add_channel (lscp_client_t *pCl ient); | int lscp_add_channel (lscp_client_t *pCl ient); | |||
skipping to change at line 158 | skipping to change at line 158 | |||
lscp_status_t lscp_set_channel_audio_channel (lscp_client_t *pCl ient, int iSamplerChannel, int iAudioOut, int iAudioIn); | lscp_status_t lscp_set_channel_audio_channel (lscp_client_t *pCl ient, int iSamplerChannel, int iAudioOut, int iAudioIn); | |||
lscp_status_t lscp_set_channel_midi_type (lscp_client_t *pCl ient, int iSamplerChannel, const char *pszMidiType); | lscp_status_t lscp_set_channel_midi_type (lscp_client_t *pCl ient, int iSamplerChannel, const char *pszMidiType); | |||
lscp_status_t lscp_set_channel_midi_device (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiDevice); | lscp_status_t lscp_set_channel_midi_device (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiDevice); | |||
lscp_status_t lscp_set_channel_midi_port (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiPort); | lscp_status_t lscp_set_channel_midi_port (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiPort); | |||
lscp_status_t lscp_set_channel_midi_channel (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiChannel); | lscp_status_t lscp_set_channel_midi_channel (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiChannel); | |||
lscp_status_t lscp_set_channel_volume (lscp_client_t *pCl ient, int iSamplerChannel, float fVolume); | lscp_status_t lscp_set_channel_volume (lscp_client_t *pCl ient, int iSamplerChannel, float fVolume); | |||
lscp_status_t lscp_reset_channel (lscp_client_t *pCl ient, int iSamplerChannel); | lscp_status_t lscp_reset_channel (lscp_client_t *pCl ient, int iSamplerChannel); | |||
lscp_status_t lscp_reset_sampler (lscp_client_t *pCl | ||||
ient); | ||||
#if defined(__cplusplus) | #if defined(__cplusplus) | |||
} | } | |||
#endif | #endif | |||
#endif // __LSCP_CLIENT_H | #endif // __LSCP_CLIENT_H | |||
// end of client.h | // end of client.h | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 4 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.1" | #define LSCP_VERSION "0.2.2" | |||
#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 | |||