| version 1.1, 2003/10/16 17:59:19 | version 1.2, 2003/10/25 09:08:24 | 
| Line 5 | Line 5 | 
 |  |  | 
 | // ---- non connect | // ---- non connect | 
 |  |  | 
| UINT commng_ncread(COMMNG self, BYTE *data) { | static UINT ncread(COMMNG self, BYTE *data) { | 
 |  |  | 
 | (void)self; | (void)self; | 
 | (void)data; | (void)data; | 
 | return(0); | return(0); | 
 | } | } | 
 |  |  | 
| UINT commng_ncwrite(COMMNG self, BYTE data) { | static UINT ncwrite(COMMNG self, BYTE data) { | 
 |  |  | 
 | (void)self; | (void)self; | 
 | (void)data; | (void)data; | 
 | return(0); | return(0); | 
 | } | } | 
 |  |  | 
| BYTE commng_ncgetstat(COMMNG self) { | static BYTE ncgetstat(COMMNG self) { | 
 |  |  | 
 | (void)self; | (void)self; | 
 | return(0xf0); | return(0xf0); | 
 | } | } | 
 |  |  | 
| UINT commng_ncmsg(COMMNG self, UINT msg, long param) { | static long ncmsg(COMMNG self, UINT msg, long param) { | 
 |  |  | 
 | (void)self; | (void)self; | 
 | (void)msg; | (void)msg; | 
| Line 37  static void ncrelease(COMMNG self) { | Line 37  static void ncrelease(COMMNG self) { | 
 | } | } | 
 |  |  | 
 | static const _COMMNG com_nc = { | static const _COMMNG com_nc = { | 
| COMCONNECT_OFF, | COMCONNECT_OFF, ncread, ncwrite, ncgetstat, ncmsg, ncrelease}; | 
| commng_ncread, commng_ncwrite, commng_ncgetstat, commng_ncmsg, |  | 
| ncrelease}; |  | 
 |  |  | 
 |  |  | 
 | // ---- | // ---- | 
 |  |  | 
 | void commng_initialize(void) { | void commng_initialize(void) { | 
 |  |  | 
 |  | cmmidi_initailize(); | 
 | } | } | 
 |  |  | 
 | COMMNG commng_create(UINT device) { | COMMNG commng_create(UINT device) { |