コード例 #1
0
 private static int ToPollfd(IntPtr source, out Pollfd destination)
 {
     throw new System.NotImplementedException();
 }
コード例 #2
0
 private static int FromPollfd(ref Pollfd source, IntPtr destination)
 {
     throw new System.NotImplementedException();
 }
コード例 #3
0
 public static bool TryCopy(IntPtr source, out Pollfd destination)
 {
     return(ToPollfd(source, out destination) == 0);
 }
コード例 #4
0
 private static extern int ToPollfd(IntPtr source, out Pollfd destination);
コード例 #5
0
 public static bool TryCopy(ref Pollfd source, IntPtr destination)
 {
     return(FromPollfd(ref source, destination) == 0);
 }
コード例 #6
0
 private static extern int FromPollfd(ref Pollfd source, IntPtr destination);