| 114 | } |
| 115 | |
| 116 | LMemoryBlock *CtrlrLuaUtils::packDsiData (MemoryBlock &dataToPack) |
| 117 | { |
| 118 | UnpackedVoice unpacked,packed; |
| 119 | unpacked.data = (uint8*)dataToPack.getData(); |
| 120 | unpacked.size = (int)dataToPack.getSize(); |
| 121 | |
| 122 | packed = packDsiMidiData(unpacked); |
| 123 | |
| 124 | return (new LMemoryBlock ((uint8 *)packed.data, packed.size)); |
| 125 | } |
| 126 | |
| 127 | void CtrlrLuaUtils::warnWindow (const String title, const String message) |
| 128 | { |
nothing calls this directly
no test coverage detected