コード例 #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);