/[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 1161 by iliev, Mon Apr 16 15:51:18 2007 UTC revision 1200 by iliev, Thu May 24 14:04:18 2007 UTC
# Line 161  class LSCPServer : public Thread { Line 161  class LSCPServer : public Thread {
161          String SetFxSendLevel(uint uiSamplerChannel, uint FxSendID, double dLevel);          String SetFxSendLevel(uint uiSamplerChannel, uint FxSendID, double dLevel);
162          String AddDbInstrumentDirectory(String Dir);          String AddDbInstrumentDirectory(String Dir);
163          String RemoveDbInstrumentDirectory(String Dir, bool Force = false);          String RemoveDbInstrumentDirectory(String Dir, bool Force = false);
164          String GetDbInstrumentDirectoryCount(String Dir);          String GetDbInstrumentDirectoryCount(String Dir, bool Recursive = false);
165          String GetDbInstrumentDirectories(String Dir);          String GetDbInstrumentDirectories(String Dir, bool Recursive = false);
166          String GetDbInstrumentDirectoryInfo(String Dir);          String GetDbInstrumentDirectoryInfo(String Dir);
167          String SetDbInstrumentDirectoryName(String Dir, String Name);          String SetDbInstrumentDirectoryName(String Dir, String Name);
168          String MoveDbInstrumentDirectory(String Dir, String Dst);          String MoveDbInstrumentDirectory(String Dir, String Dst);
169            String CopyDbInstrumentDirectory(String Dir, String Dst);
170          String SetDbInstrumentDirectoryDescription(String Dir, String Desc);          String SetDbInstrumentDirectoryDescription(String Dir, String Desc);
171          String AddDbInstruments(String DbDir, String FilePath, int Index = -1);          String FindDbInstrumentDirectories(String Dir, std::map<String,String> Parameters, bool Recursive = true);
172          String AddDbInstrumentsFlat(String DbDir, String FilePath);          String AddDbInstruments(String DbDir, String FilePath, int Index = -1, bool bBackground = false);
173          String AddDbInstrumentsNonrecursive(String DbDir, String FsDir);          String AddDbInstruments(String ScanMode, String DbDir, String FsDir, bool bBackground = false);
174          String RemoveDbInstrument(String Instr);          String RemoveDbInstrument(String Instr);
175          String GetDbInstrumentCount(String Dir);          String GetDbInstrumentCount(String Dir, bool Recursive = false);
176          String GetDbInstruments(String Dir);          String GetDbInstruments(String Dir, bool Recursive = false);
177          String GetDbInstrumentInfo(String Instr);          String GetDbInstrumentInfo(String Instr);
178          String SetDbInstrumentName(String Instr, String Name);          String SetDbInstrumentName(String Instr, String Name);
179          String MoveDbInstrument(String Instr, String Dst);          String MoveDbInstrument(String Instr, String Dst);
180            String CopyDbInstrument(String Instr, String Dst);
181          String SetDbInstrumentDescription(String Instr, String Desc);          String SetDbInstrumentDescription(String Instr, String Desc);
182            String FindDbInstruments(String Dir, std::map<String,String> Parameters, bool Recursive = true);
183            String GetDbInstrumentsJobInfo(int JobId);
184          String ResetChannel(uint uiSamplerChannel);          String ResetChannel(uint uiSamplerChannel);
185          String ResetSampler();          String ResetSampler();
186          String GetServerInfo();          String GetServerInfo();
# Line 384  class LSCPServer : public Thread { Line 388  class LSCPServer : public Thread {
388                   * @param NewName The new name of the directory.                   * @param NewName The new name of the directory.
389                   */                   */
390                  virtual void InstrumentNameChanged(String Instr, String NewName);                  virtual void InstrumentNameChanged(String Instr, String NewName);
391    
392                    /**
393                     * Invoked when the status of particular job is changed.
394                     * @param JobId The ID of the job.
395                     */
396                    virtual void JobStatusChanged(int JobId);
397          } dbInstrumentsEventHandler;          } dbInstrumentsEventHandler;
398  #endif // HAVE_SQLITE3  #endif // HAVE_SQLITE3
399  };  };

Legend:
Removed from v.1161  
changed lines
  Added in v.1200

  ViewVC Help
Powered by ViewVC