using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using ArduinoCsCompiler.Runtime;
namespace ArduinoCsCompiler
{
internal class Interop
{
[DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true, ExactSpelling = true)]
internal static extern uint GetTimeZoneInformation(out MiniInterop.TIME_ZONE_INFORMATION lpTimeZoneInformation);
[DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true, ExactSpelling = true)]
internal static extern uint GetDynamicTimeZoneInformation(out MiniInterop.TIME_DYNAMIC_ZONE_INFORMATION pTimeZoneInformation);
}
}