/[svn]/linuxsampler/trunk/src/network/lscp.y
ViewVC logotype

Diff of /linuxsampler/trunk/src/network/lscp.y

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

revision 53 by schoenebeck, Mon Apr 26 17:15:51 2004 UTC revision 64 by schoenebeck, Thu May 6 20:06:20 2004 UTC
# Line 2  Line 2 
2   *                                                                         *   *                                                                         *
3   *   LinuxSampler - modular, streaming capable sampler                     *   *   LinuxSampler - modular, streaming capable sampler                     *
4   *                                                                         *   *                                                                         *
5   *   Copyright (C) 2003 by Benno Senoner and Christian Schoenebeck         *   *   Copyright (C) 2003, 2004 by Benno Senoner and Christian Schoenebeck   *
6   *                                                                         *   *                                                                         *
7   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
8   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
# Line 126  load_instr_args       :  filename SP ins Line 126  load_instr_args       :  filename SP ins
126  load_engine_args      :  engine_name SP sampler_channel  { $$ = LSCPSERVER->LoadEngine($1, $3); }  load_engine_args      :  engine_name SP sampler_channel  { $$ = LSCPSERVER->LoadEngine($1, $3); }
127                        ;                        ;
128    
129  audio_output_type     :  ALSA  { $$ = audio_output_type_alsa; }  audio_output_type     :  ALSA  { $$ = AudioOutputDevice::type_alsa; }
130                        |  JACK  { $$ = audio_output_type_jack; }                        |  JACK  { $$ = AudioOutputDevice::type_jack; }
131                        ;                        ;
132    
133  midi_input_type       :  ALSA  { $$ = midi_input_type_alsa; }  midi_input_type       :  ALSA  { $$ = MidiInputDevice::type_alsa; }
134                        ;                        ;
135    
136  volume                :  DOTNUM  volume                :  DOTNUM

Legend:
Removed from v.53  
changed lines
  Added in v.64

  ViewVC Help
Powered by ViewVC