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