| 147 | } |
| 148 | |
| 149 | const Result CtrlrWindows::getDefaultPanel(MemoryBlock &dataToWrite) |
| 150 | { |
| 151 | #ifdef DEBUG_INSTANCE |
| 152 | File temp("c:\\devel\\debug_small.bpanelz"); |
| 153 | temp.loadFileAsData (dataToWrite); |
| 154 | return (Result::ok()); |
| 155 | #endif |
| 156 | |
| 157 | return (readResource (nullptr, MAKEINTRESOURCE(CTRLR_INTERNAL_PANEL_RESID), RT_RCDATA, dataToWrite)); |
| 158 | } |
| 159 | |
| 160 | const Result CtrlrWindows::getDefaultResources(MemoryBlock& dataToWrite) |
| 161 | { |
nothing calls this directly
no test coverage detected