aboutsummaryrefslogtreecommitdiffhomepage
path: root/backends/winmidi.c
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-09-18 23:44:36 +0200
committercbdev <cb@cbcdn.com>2019-09-18 23:44:36 +0200
commit079baff220a963c365ab8448c421e22e896caaf1 (patch)
tree62a1df5c72ee07fcfe9abec380bbc402be95efb7 /backends/winmidi.c
parent82f6b03929315d65693155d3274a79d4a6285896 (diff)
downloadmidimonster-079baff220a963c365ab8448c421e22e896caaf1.tar.gz
midimonster-079baff220a963c365ab8448c421e22e896caaf1.tar.bz2
midimonster-079baff220a963c365ab8448c421e22e896caaf1.zip
Fix maweb command key handling
Diffstat (limited to 'backends/winmidi.c')
-rw-r--r--backends/winmidi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/backends/winmidi.c b/backends/winmidi.c
index 67187ac..13c4b4a 100644
--- a/backends/winmidi.c
+++ b/backends/winmidi.c
@@ -21,6 +21,7 @@ static struct {
};
//TODO detect option
+//TODO receive feedback socket until EAGAIN
int init(){
backend winmidi = {
@@ -465,7 +466,7 @@ static int winmidi_start(){
}
//open the feedback sockets
- //for some reason this while construct fails to work on 'real' windows with ipv6
+ //for some reason the feedback connection fails to work on 'real' windows with ipv6
backend_config.socket_pair[0] = mmbackend_socket("127.0.0.1", "0", SOCK_DGRAM, 1, 0);
if(backend_config.socket_pair[0] < 0){
fprintf(stderr, "winmidi failed to open feedback socket\n");