예제 #1
0
		private static extern int settimeofday (ref Timeval tv, IntPtr ignore);
예제 #2
0
		private static extern int gettimeofday (out Timeval tv, IntPtr ignore);
예제 #3
0
		public static extern int settimeofday (ref Timeval tv, ref Timezone tz);
예제 #4
0
		public static extern int gettimeofday (out Timeval tv, out Timezone tz);
예제 #5
0
 public static bool TryCopy(IntPtr source, out Timeval destination)
 {
     return(ToTimeval(source, out destination) == 0);
 }
예제 #6
0
 public static bool TryCopy(ref Timeval source, IntPtr destination)
 {
     return(FromTimeval(ref source, destination) == 0);
 }
예제 #7
0
 private static extern int ToTimeval(IntPtr source, out Timeval destination);
예제 #8
0
 private static extern int FromTimeval(ref Timeval source, IntPtr destination);