| 672 | } |
| 673 | |
| 674 | void VSTWrapper::SetString(int opcode, const wxString & str, int index) |
| 675 | { |
| 676 | char buf[256]; |
| 677 | strcpy(buf, str.Left(255).ToUTF8()); |
| 678 | |
| 679 | callDispatcher(opcode, index, 0, buf, 0.0); |
| 680 | } |
| 681 | |
| 682 | intptr_t VSTWrapper::callDispatcher(int opcode, |
| 683 | int index, intptr_t value, void *ptr, float opt) |
no outgoing calls