コード例 #1
0
 public static bool TryCopy(IntPtr source, out Flock destination)
 {
     return(ToFlock(source, out destination) == 0);
 }
コード例 #2
0
 private static extern int ToFlock(IntPtr source, out Flock destination);
コード例 #3
0
 public static bool TryCopy(ref Flock source, IntPtr destination)
 {
     return(FromFlock(ref source, destination) == 0);
 }
コード例 #4
0
 private static extern int FromFlock(ref Flock source, IntPtr destination);
コード例 #5
0
 public static int fcntl(int fd, FcntlCommand cmd, ref Flock @lock)
 {
     throw new System.NotImplementedException();
 }
コード例 #6
0
		public static extern int fcntl (int fd, FcntlCommand cmd, ref Flock @lock);