/[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 2510 by schoenebeck, Thu Jan 23 04:00:26 2014 UTC revision 2515 by schoenebeck, Wed Feb 5 20:45:18 2014 UTC
# Line 96  struct yyparse_param_t { Line 96  struct yyparse_param_t {
96      LSCPServer* pServer;      LSCPServer* pServer;
97      int         hSession;      int         hSession;
98      bool        bVerbose; ///< if true then all commands will immediately sent back (echo)      bool        bVerbose; ///< if true then all commands will immediately sent back (echo)
99        bool        bShellInteract; ///< if true: then client is the LSCP shell
100      int         iLine;    ///< Current line (just for verbosity / messages)      int         iLine;    ///< Current line (just for verbosity / messages)
101      int         iColumn;  ///< Current column (just for verbosity / messages)      int         iColumn;  ///< Current column (just for verbosity / messages)
102      YYTYPE_INT16** ppStackBottom; ///< Bottom end of the Bison parser's state stack.      YYTYPE_INT16** ppStackBottom; ///< Bottom end of the Bison parser's state stack.
# Line 105  struct yyparse_param_t { Line 106  struct yyparse_param_t {
106          pServer  = NULL;          pServer  = NULL;
107          hSession = -1;          hSession = -1;
108          bVerbose = false;          bVerbose = false;
109            bShellInteract = false;
110          iLine = iColumn = 0;          iLine = iColumn = 0;
111          ppStackBottom = ppStackTop = NULL;          ppStackBottom = ppStackTop = NULL;
112      }      }

Legend:
Removed from v.2510  
changed lines
  Added in v.2515

  ViewVC Help
Powered by ViewVC