private static int FromTimezone(ref Timezone source, IntPtr destination) { throw new System.NotImplementedException(); }
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); }
public static int settimeofday(ref Timeval tv, ref Timezone tz) { throw new System.NotImplementedException(); }
private static int gettimeofday(IntPtr ignore, out Timezone tz) { throw new System.NotImplementedException(); }
public static extern int settimeofday (ref Timeval tv, ref Timezone tz);
private static extern int gettimeofday (IntPtr ignore, out Timezone tz);
public static extern int gettimeofday (out Timeval tv, out Timezone tz);