client.h | client.h | |||
---|---|---|---|---|
skipping to change at line 241 | skipping to change at line 241 | |||
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); | lscp_status_t lscp_reset_sampler (lscp_client_t *pCl ient); | |||
lscp_server_info_t * lscp_get_server_info (lscp_client_t *pCl ient); | lscp_server_info_t * lscp_get_server_info (lscp_client_t *pCl ient); | |||
int lscp_get_total_voice_count (lscp_client_t *pCl ient); | int lscp_get_total_voice_count (lscp_client_t *pCl ient); | |||
int lscp_get_total_voice_count_max (lscp_client_t *pCl ient); | int lscp_get_total_voice_count_max (lscp_client_t *pCl ient); | |||
float lscp_get_volume (lscp_client_t *pCl ient ); | float lscp_get_volume (lscp_client_t *pCl ient); | |||
lscp_status_t lscp_set_volume (lscp_client_t *pCl ient, float fVolume); | lscp_status_t lscp_set_volume (lscp_client_t *pCl ient, float fVolume); | |||
int lscp_get_voices (lscp_client_t *pCl | ||||
ient); | ||||
lscp_status_t lscp_set_voices (lscp_client_t *pCl | ||||
ient, int iMaxVoices); | ||||
int lscp_get_streams (lscp_client_t *pCl | ||||
ient); | ||||
lscp_status_t lscp_set_streams (lscp_client_t *pCl | ||||
ient, int iMaxStreams); | ||||
//------------------------------------------------------------------------- | //------------------------------------------------------------------------- | |||
// Effect sends control functions. | // Effect sends control functions. | |||
int lscp_create_fxsend (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiController, const char *pszFxName); | int lscp_create_fxsend (lscp_client_t *pCl ient, int iSamplerChannel, int iMidiController, const char *pszFxName); | |||
lscp_status_t lscp_destroy_fxsend (lscp_client_t *pCl ient, int iSamplerChannel, int iFxSend); | lscp_status_t lscp_destroy_fxsend (lscp_client_t *pCl ient, int iSamplerChannel, int iFxSend); | |||
int lscp_get_fxsends (lscp_client_t *pCl ient, int iSamplerChannel); | int lscp_get_fxsends (lscp_client_t *pCl ient, int iSamplerChannel); | |||
int * lscp_list_fxsends (lscp_client_t *pCl ient, int iSamplerChannel); | int * lscp_list_fxsends (lscp_client_t *pCl ient, int iSamplerChannel); | |||
lscp_fxsend_info_t * lscp_get_fxsend_info (lscp_client_t *pCl ient, int iSamplerChannel, int iFxSend); | lscp_fxsend_info_t * lscp_get_fxsend_info (lscp_client_t *pCl ient, int iSamplerChannel, int iFxSend); | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 11 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 General Public License along | 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., | with this program; if not, write to the Free Software Foundation, Inc., | |||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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.5.5.8" | #define LSCP_VERSION "0.5.6" | |||
#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 | |||