Exemplo n.º 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));
     }
 }
Exemplo n.º 2
0
 internal static int feof(void *fp)
 {
     return(CStdio.C_feof(fp));
 }
Exemplo n.º 3
0
 internal static int fclose(void *fp)
 {
     return(CStdio.C_fclose(fp));
 }
Exemplo n.º 4
0
 internal static int fflush(void *fp)
 {
     return(CStdio.C_fflush(fp));
 }
Exemplo n.º 5
0
 internal static ulong fwrite(void *buffer, ulong elementSize, ulong count, void *fp)
 {
     return(CStdio.C_fwrite(buffer, elementSize, count, fp));
 }
Exemplo n.º 6
0
 internal static ulong fread(void *buffer, ulong elementSize, ulong count, void *fp)
 {
     return(CStdio.fread(buffer, elementSize, count, fp));
 }