repo.or.cz
/
chuck-blob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
*** empty log message ***
[chuck-blob.git]
/
v2
/
test
/
art01.ck
blob
1a8ea3eb87dde69f17f37bea61a813616cc23e78
1
MidiIn min;
2
MidiMsg msg;
3
4
if( !min.open( 0 ) )
5
<<<"bad">>>;
6
7
while( true)
8
{
9
min => now;
10
while( min.recv( msg ) )
11
{
12
<<<msg.data1,msg.data2,msg.data3>>>;
13
<<<"-----------">>>;
14
}
15
16
}