| 649 | } |
| 650 | |
| 651 | int VSTWrapper::GetString(wxString & outstr, int opcode, int index) const |
| 652 | { |
| 653 | char buf[256]; |
| 654 | |
| 655 | memset(buf, 0, sizeof(buf)); |
| 656 | |
| 657 | // Assume we are passed a read-only dispatcher function code |
| 658 | constCallDispatcher(opcode, index, 0, buf, 0.0); |
| 659 | |
| 660 | outstr = wxString::FromUTF8(buf); |
| 661 | |
| 662 | return 0; |
| 663 | } |
| 664 | |
| 665 | wxString VSTWrapper::GetString(int opcode, int index) const |
| 666 | { |
no test coverage detected