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