| client.h | | client.h | |
| | | | |
| skipping to change at line 41 | | skipping to change at line 41 | |
| #endif | | #endif | |
| | | | |
| //------------------------------------------------------------------------- | | //------------------------------------------------------------------------- | |
| // MIDI channel omni mode. | | // MIDI channel omni mode. | |
| | | | |
| #define LSCP_MIDI_CHANNEL_ALL 16 | | #define LSCP_MIDI_CHANNEL_ALL 16 | |
| | | | |
| //------------------------------------------------------------------------- | | //------------------------------------------------------------------------- | |
| // Client data structures. | | // Client data structures. | |
| | | | |
|
| | | /** Server info cache struct. */ | |
| | | typedef struct _lscp_server_info_t | |
| | | { | |
| | | char * description; | |
| | | char * version; | |
| | | | |
| | | } lscp_server_info_t; | |
| | | | |
| /** Engine info cache struct. */ | | /** Engine info cache struct. */ | |
| typedef struct _lscp_engine_info_t | | typedef struct _lscp_engine_info_t | |
| { | | { | |
| char * description; | | char * description; | |
| char * version; | | char * version; | |
| | | | |
| } lscp_engine_info_t; | | } lscp_engine_info_t; | |
| | | | |
| /** Channel info cache struct. */ | | /** Channel info cache struct. */ | |
| typedef struct _lscp_channel_info_t | | typedef struct _lscp_channel_info_t | |
| | | | |
| skipping to change at line 168 | | skipping to change at line 176 | |
| 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); | | lscp_status_t lscp_reset_sampler (lscp_client_t *pCl
ient); | |
| | | | |
|
| | | lscp_server_info_t * lscp_get_server_info (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. |
| 0 lines changed or deleted | | 11 lines changed or added | |
|