--- linuxsampler/trunk/src/network/lscpparser.h 2007/06/18 08:47:15 1244 +++ linuxsampler/trunk/src/network/lscpparser.h 2007/06/23 15:54:18 1252 @@ -87,11 +87,14 @@ LSCPServer* pServer; int hSession; bool bVerbose; ///< if true then all commands will immediately sent back (echo) + int iLine; ///< Current line (just for verbosity / messages) + int iColumn; ///< Current column (just for verbosity / messages) yyparse_param_t() { pServer = NULL; hSession = -1; bVerbose = false; + iLine = iColumn = 0; } }; #define YYPARSE_PARAM yyparse_param