/[svn]/linuxsampler/trunk/src/network/lscpserver.h
ViewVC logotype

Diff of /linuxsampler/trunk/src/network/lscpserver.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 212 by schoenebeck, Wed Jul 28 14:17:29 2004 UTC revision 227 by schoenebeck, Thu Aug 26 22:05:44 2004 UTC
# Line 47  Line 47 
47  /// TCP Port on which the server should listen for connection requests.  /// TCP Port on which the server should listen for connection requests.
48  #define LSCP_PORT 8888  #define LSCP_PORT 8888
49    
50    /// try up to 3 minutes to bind server socket
51    #define LSCP_SERVER_BIND_TIMEOUT 180
52    
53  using namespace LinuxSampler;  using namespace LinuxSampler;
54    
55  // External references to the main scanner and parser functions  // External references to the main scanner and parser functions
56  extern int yyparse(void* YYPARSE_PARAM);  extern int yyparse(void* YYPARSE_PARAM);
57  extern int yylex_init(yyscan_t* scanner);  extern void restart(yyparse_param_t* pparam, int& yychar);
 extern int yylex_destroy(yyscan_t yyscanner);  
58    
59  /**  /**
60   * Network server for the LinuxSampler Control Protocol (LSCP).   * Network server for the LinuxSampler Control Protocol (LSCP).
# Line 115  class LSCPServer : public Thread { Line 117  class LSCPServer : public Thread {
117          String SetMIDIInputDevice(uint MIDIDeviceId, uint uiSamplerChannel);          String SetMIDIInputDevice(uint MIDIDeviceId, uint uiSamplerChannel);
118          String SetMIDIInputType(String MidiInputDriver, uint uiSamplerChannel);          String SetMIDIInputType(String MidiInputDriver, uint uiSamplerChannel);
119          String SetMIDIInput(uint MIDIDeviceId, uint MIDIPort, uint MIDIChannel, uint uiSamplerChannel);          String SetMIDIInput(uint MIDIDeviceId, uint MIDIPort, uint MIDIChannel, uint uiSamplerChannel);
120          String SetVolume(double Volume, uint uiSamplerChannel);          String SetVolume(double dVolume, uint uiSamplerChannel);
121          String ResetChannel(uint uiSamplerChannel);          String ResetChannel(uint uiSamplerChannel);
122          String ResetSampler();          String ResetSampler();
123          String SubscribeNotification(LSCPEvent::event_t);          String SubscribeNotification(LSCPEvent::event_t);

Legend:
Removed from v.212  
changed lines
  Added in v.227

  ViewVC Help
Powered by ViewVC