|
|
| version 1.5, 2004/03/25 15:10:33 | version 1.7, 2011/01/15 16:01:52 |
|---|---|
| Line 11 static UINT | Line 11 static UINT |
| ncread(COMMNG self, BYTE *data) | ncread(COMMNG self, BYTE *data) |
| { | { |
| UNUSED(self); | |
| UNUSED(data); | |
| return 0; | return 0; |
| } | } |
| Line 21 static UINT | Line 18 static UINT |
| ncwrite(COMMNG self, BYTE data) | ncwrite(COMMNG self, BYTE data) |
| { | { |
| UNUSED(self); | |
| UNUSED(data); | |
| return 0; | return 0; |
| } | } |
| Line 31 static BYTE | Line 25 static BYTE |
| ncgetstat(COMMNG self) | ncgetstat(COMMNG self) |
| { | { |
| UNUSED(self); | |
| return 0xf0; | return 0xf0; |
| } | } |
| Line 40 static long | Line 32 static long |
| ncmsg(COMMNG self, UINT msg, long param) | ncmsg(COMMNG self, UINT msg, long param) |
| { | { |
| UNUSED(self); | |
| UNUSED(msg); | |
| UNUSED(param); | |
| return 0; | return 0; |
| } | } |
| Line 51 static void | Line 39 static void |
| ncrelease(COMMNG self) | ncrelease(COMMNG self) |
| { | { |
| UNUSED(self); | /* Nothing to do */ |
| } | } |
| static const _COMMNG com_nc = { | static const _COMMNG com_nc = { |
| Line 105 commng_create(UINT device) | Line 93 commng_create(UINT device) |
| break; | break; |
| } | } |
| if (cfg) { | if (cfg) { |
| if ((cfg->port == COMPORT_COM1) | if ((cfg->port >= COMPORT_COM1) |
| && (cfg->port <= COMPORT_COM4)) { | && (cfg->port <= COMPORT_COM4)) { |
| ret = cmserial_create(cfg->port - COMPORT_COM1 + 1, cfg->param, cfg->speed); | ret = cmserial_create(cfg->port - COMPORT_COM1 + 1, cfg->param, cfg->speed); |
| } else if (cfg->port == COMPORT_MIDI) { | } else if (cfg->port == COMPORT_MIDI) { |