Exemple #1
0
 internal static errno_t _wfopen_s(out void *fp, string path, string mode)
 {
     fixed(char *ppath = path)
     fixed(char *pmode = mode)
     {
         return(CStdio.C_wfopen_s(out fp, ppath, pmode));
     }
 }
Exemple #2
0
 internal static int feof(void *fp)
 {
     return(CStdio.C_feof(fp));
 }
Exemple #3
0
 internal static int fclose(void *fp)
 {
     return(CStdio.C_fclose(fp));
 }
Exemple #4
0
 internal static int fflush(void *fp)
 {
     return(CStdio.C_fflush(fp));
 }
Exemple #5
0
 internal static ulong fwrite(void *buffer, ulong elementSize, ulong count, void *fp)
 {
     return(CStdio.C_fwrite(buffer, elementSize, count, fp));
 }
Exemple #6
0
 internal static ulong fread(void *buffer, ulong elementSize, ulong count, void *fp)
 {
     return(CStdio.fread(buffer, elementSize, count, fp));
 }