/[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 1244 by schoenebeck, Mon Jun 18 08:47:15 2007 UTC revision 1252 by schoenebeck, Sat Jun 23 15:54:18 2007 UTC
# Line 87  struct yyparse_param_t { Line 87  struct yyparse_param_t {
87      LSCPServer* pServer;      LSCPServer* pServer;
88      int         hSession;      int         hSession;
89      bool        bVerbose; ///< if true then all commands will immediately sent back (echo)      bool        bVerbose; ///< if true then all commands will immediately sent back (echo)
90        int         iLine;    ///< Current line (just for verbosity / messages)
91        int         iColumn;  ///< Current column (just for verbosity / messages)
92    
93      yyparse_param_t() {      yyparse_param_t() {
94          pServer  = NULL;          pServer  = NULL;
95          hSession = -1;          hSession = -1;
96          bVerbose = false;          bVerbose = false;
97            iLine = iColumn = 0;
98      }      }
99  };  };
100  #define YYPARSE_PARAM yyparse_param  #define YYPARSE_PARAM yyparse_param

Legend:
Removed from v.1244  
changed lines
  Added in v.1252

  ViewVC Help
Powered by ViewVC