| 256 | */ |
| 257 | |
| 258 | int CsoundChannelList::SubType(int ndx) |
| 259 | { |
| 260 | int tmp; |
| 261 | controlChannelHints_t hints; |
| 262 | tmp = this->GetChannelMetaData(ndx, &hints); |
| 263 | if (tmp >= 0) { |
| 264 | tmp = hints.behav; |
| 265 | } |
| 266 | return tmp; |
| 267 | } |
| 268 | |
| 269 | /** |
| 270 | * Returns the default value set for the control channel at index 'ndx' |
nothing calls this directly
no test coverage detected