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

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

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

revision 52 by schoenebeck, Fri Mar 5 13:46:15 2004 UTC revision 53 by schoenebeck, Mon Apr 26 17:15:51 2004 UTC
# Line 31  Line 31 
31  #include <sstream>  #include <sstream>
32  #include <string>  #include <string>
33    
34  #include "../global.h"  #include "../common/global.h"
35    #include "../Sampler.h"
36    
37  /// Will be returned by the parser in case of syntax errors.  /// Will be returned by the parser in case of syntax errors.
38  #define LSCP_SYNTAX_ERROR       -69  #define LSCP_SYNTAX_ERROR       -69
39    
40    using namespace LinuxSampler;
41    
42  /**  /**
43   * How the fill states of disk stream buffers should be reflected.   * How the fill states of disk stream buffers should be reflected.
44   */   */
# Line 45  enum fill_response_t { Line 48  enum fill_response_t {
48  };  };
49    
50  /**  /**
  * Which audio output system to be used.  
  */  
 enum audio_output_type_t {  
     audio_output_type_alsa,  
     audio_output_type_jack  
 };  
   
 /**  
51   * Semantic value of the lookahead symbol.   * Semantic value of the lookahead symbol.
52   *   *
53   * Structure that is used by the parser to process and return values from the   * Structure that is used by the parser to process and return values from the
# Line 67  struct YYSTYPE { Line 62  struct YYSTYPE {
62          double              Dotnum;          double              Dotnum;
63          fill_response_t     FillResponse;          fill_response_t     FillResponse;
64          audio_output_type_t AudioOutput;          audio_output_type_t AudioOutput;
65            midi_input_type_t   MidiInput;
66      };      };
67      std::string  String;      std::string  String;
68  };  };

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

  ViewVC Help
Powered by ViewVC