/[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 123 by schoenebeck, Mon Jun 14 19:33:16 2004 UTC revision 135 by senkov, Sun Jun 20 16:01:50 2004 UTC
# Line 48  enum fill_response_t { Line 48  enum fill_response_t {
48  };  };
49    
50  /**  /**
51     * Event types
52     */
53    enum event_t {
54        event_channels,
55        event_voice_count,
56        event_stream_count,
57        event_channel_buffer_fill,
58        event_channel_info,
59        event_misc
60    };
61    
62    /**
63   * Semantic value of the lookahead symbol.   * Semantic value of the lookahead symbol.
64   *   *
65   * 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 61  struct YYSTYPE { Line 73  struct YYSTYPE {
73          unsigned int    Number;          unsigned int    Number;
74          double          Dotnum;          double          Dotnum;
75          fill_response_t FillResponse;          fill_response_t FillResponse;
76            event_t         Event;
77      };      };
78      std::string                       String;      std::string                       String;
79      std::map<std::string,std::string> KeyValList;      std::map<std::string,std::string> KeyValList;

Legend:
Removed from v.123  
changed lines
  Added in v.135

  ViewVC Help
Powered by ViewVC