Пример #1
0
 private static int sys_utime(
     string filename, ref Utimbuf buf, int use_buf)
 {
     throw new System.NotImplementedException();
 }
Пример #2
0
 public static bool TryCopy(IntPtr source, out Utimbuf destination)
 {
     return(ToUtimbuf(source, out destination) == 0);
 }
Пример #3
0
 private static extern int ToUtimbuf(IntPtr source, out Utimbuf destination);
Пример #4
0
 public static bool TryCopy(ref Utimbuf source, IntPtr destination)
 {
     return(FromUtimbuf(ref source, destination) == 0);
 }
Пример #5
0
 private static extern int FromUtimbuf(ref Utimbuf source, IntPtr destination);