Diff for /np2/wince/dosio.h between versions 1.4 and 1.5

version 1.4, 2004/01/27 10:55:47 version 1.5, 2004/06/20 02:57:47
Line 83  FLISTH file_list1st(const char *dir, FLI Line 83  FLISTH file_list1st(const char *dir, FLI
 BOOL file_listnext(FLISTH hdl, FLINFO *fli);  BOOL file_listnext(FLISTH hdl, FLINFO *fli);
 void file_listclose(FLISTH hdl);  void file_listclose(FLISTH hdl);
   
   #if defined(OSLANG_SJIS)
 #define file_cpyname(a, b, c)   milsjis_ncpy(a, b, c)  #define file_cpyname(a, b, c)   milsjis_ncpy(a, b, c)
 #define file_catname(a, b, c)   milsjis_ncat(a, b, c)  #define file_catname(a, b, c)   milsjis_ncat(a, b, c)
 #define file_cmpname(a, b)              milsjis_cmp(a, b)  #define file_cmpname(a, b)              milsjis_cmp(a, b)
 char *file_getname(char *path);  #else
 void file_cutname(char *path);  #define file_cpyname(a, b, c)   milutf8_ncpy(a, b, c)
 char *file_getext(char *path);  #define file_catname(a, b, c)   milutf8_ncat(a, b, c)
 void file_cutext(char *path);  #define file_cmpname(a, b)              milutf8_cmp(a, b)
 void file_cutseparator(char *path);  #endif
 void file_setseparator(char *path, int maxlen);  OEMCHAR *file_getname(const OEMCHAR *path);
   void file_cutname(OEMCHAR *path);
   OEMCHAR *file_getext(const OEMCHAR *path);
   void file_cutext(OEMCHAR *path);
   void file_cutseparator(OEMCHAR *path);
   void file_setseparator(OEMCHAR *path, int maxlen);
   
 #ifdef __cplusplus  #ifdef __cplusplus
 }  }

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


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