/[svn]/linuxsampler/trunk/src/scriptvm/CoreVMFunctions.cpp
ViewVC logotype

Diff of /linuxsampler/trunk/src/scriptvm/CoreVMFunctions.cpp

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

revision 2581 by schoenebeck, Fri May 30 12:48:05 2014 UTC revision 2596 by schoenebeck, Thu Jun 5 19:39:12 2014 UTC
# Line 20  VMFnResult* VMEmptyResultFunction::error Line 20  VMFnResult* VMEmptyResultFunction::error
20      return &result;      return &result;
21  }  }
22    
23    void VMEmptyResultFunction::wrnMsg(const String& txt) {
24        std::cout << "[ScriptVM] " << txt << std::endl;
25    }
26    
27    void VMEmptyResultFunction::errMsg(const String& txt) {
28        std::cerr << "[ScriptVM] " << txt << std::endl;
29    }
30    
31  VMFnResult* VMEmptyResultFunction::successResult() {  VMFnResult* VMEmptyResultFunction::successResult() {
32      result.flags = STMT_SUCCESS;      result.flags = STMT_SUCCESS;
33      return &result;      return &result;

Legend:
Removed from v.2581  
changed lines
  Added in v.2596

  ViewVC Help
Powered by ViewVC