Diff for /np2/win9xc/commng.cpp between versions 1.3 and 1.5

version 1.3, 2003/11/21 06:51:15 version 1.5, 2005/02/07 14:46:15
Line 1 Line 1
 #include        "compiler.h"  #include        "compiler.h"
   #include        "np2.h"
 #include        "commng.h"  #include        "commng.h"
 #include        "cmver.h"  #include        "cmver.h"
   #include        "cmjasts.h"
   
   
 // ---- non connect  // ---- non connect
   
 static UINT ncread(COMMNG self, BYTE *data) {  static UINT ncread(COMMNG self, UINT8 *data) {
   
         (void)self;          (void)self;
         (void)data;          (void)data;
         return(0);          return(0);
 }  }
   
 static UINT ncwrite(COMMNG self, BYTE data) {  static UINT ncwrite(COMMNG self, UINT8 data) {
   
         (void)self;          (void)self;
         (void)data;          (void)data;
         return(0);          return(0);
 }  }
   
 static BYTE ncgetstat(COMMNG self) {  static UINT8 ncgetstat(COMMNG self) {
   
         (void)self;          (void)self;
         return(0xf0);          return(0xf0);
Line 55  COMMNG commng_create(UINT device) { Line 57  COMMNG commng_create(UINT device) {
         if (device == COMCREATE_MPU98II) {          if (device == COMCREATE_MPU98II) {
                 ret = cmvermouth_create();                  ret = cmvermouth_create();
         }          }
           else if (device == COMCREATE_PRINTER) {
                   if (np2oscfg.jastsnd) {
                           ret = cmjasts_create();
                   }
           }
         if (ret == NULL) {          if (ret == NULL) {
                 ret = (COMMNG)&com_nc;                  ret = (COMMNG)&com_nc;
         }          }

Removed from v.1.3  
changed lines
  Added in v.1.5


RetroPC.NET-CVS <cvs@retropc.net>