Mercurial > hg > svgui
comparison layer/NoteLayer.h @ 806:4c8ca536b54f warnfix_no_size_t
Some more unsigned/long removal
author | Chris Cannam |
---|---|
date | Tue, 17 Jun 2014 15:36:56 +0100 |
parents | 1d526ba11a24 |
children | b66fb15de477 |
comparison
equal
deleted
inserted
replaced
805:1d526ba11a24 | 806:4c8ca536b54f |
---|---|
111 /** | 111 /** |
112 * Add a note-on. Used when recording MIDI "live". The note will | 112 * Add a note-on. Used when recording MIDI "live". The note will |
113 * not be finally added to the layer until the corresponding | 113 * not be finally added to the layer until the corresponding |
114 * note-off. | 114 * note-off. |
115 */ | 115 */ |
116 void addNoteOn(long frame, int pitch, int velocity); | 116 void addNoteOn(int frame, int pitch, int velocity); |
117 | 117 |
118 /** | 118 /** |
119 * Add a note-off. This will cause a note to appear, if and only | 119 * Add a note-off. This will cause a note to appear, if and only |
120 * if there is a matching pending note-on. | 120 * if there is a matching pending note-on. |
121 */ | 121 */ |
122 void addNoteOff(long frame, int pitch); | 122 void addNoteOff(int frame, int pitch); |
123 | 123 |
124 /** | 124 /** |
125 * Abandon all pending note-on events. | 125 * Abandon all pending note-on events. |
126 */ | 126 */ |
127 void abandonNoteOns(); | 127 void abandonNoteOns(); |