| 301 | */ |
| 302 | |
| 303 | double CsoundChannelList::MaxValue(int ndx) |
| 304 | { |
| 305 | controlChannelHints_t hints; |
| 306 | if (this->GetChannelMetaData(ndx, &hints) > 0) |
| 307 | return hints.max; |
| 308 | return 0.0; |
| 309 | } |
| 310 | |
| 311 | /** |
| 312 | * Releases the memory used by the channel list. Should be called |
nothing calls this directly
no test coverage detected