Beispiel #1
0
 private static int FromTimezone(ref Timezone source, IntPtr destination)
 {
     throw new System.NotImplementedException();
 }
Beispiel #2
0
 private static int ToTimezone(IntPtr source, out Timezone destination)
 {
     throw new System.NotImplementedException();
 }
 private static extern int ToTimezone(IntPtr source, out Timezone destination);
 public static bool TryCopy(IntPtr source, out Timezone destination)
 {
     return(ToTimezone(source, out destination) == 0);
 }
 private static extern int FromTimezone(ref Timezone source, IntPtr destination);
 public static bool TryCopy(ref Timezone source, IntPtr destination)
 {
     return(FromTimezone(ref source, destination) == 0);
 }
Beispiel #7
0
 public static int settimeofday(ref Timeval tv, ref Timezone tz)
 {
     throw new System.NotImplementedException();
 }
Beispiel #8
0
 private static int gettimeofday(IntPtr ignore, out Timezone tz)
 {
     throw new System.NotImplementedException();
 }
Beispiel #9
0
		public static extern int settimeofday (ref Timeval tv, ref Timezone tz);
Beispiel #10
0
		private static extern int gettimeofday (IntPtr ignore, out Timezone tz);
Beispiel #11
0
		public static extern int gettimeofday (out Timeval tv, out Timezone tz);