Danke Marabu
ich kenne mich pointern nicht so gut aus.. ich hab es versucht
Delphi-Quellcode:
function myUTCToLocalTime(utctime: TDateTime): TDatetime;
var
TZ: TTimeZoneInformation;
ST,outST : TSystemtime;
begin
GetTimeZoneInformation (TZ);
GetSystemTime(ST);
SystemTimeToTzSpecificLocalTime(TZ,ST,outST);
Result:= EncodeDate(outst.wYear,outst.wMonth,outst.wDay)+EncodeTime(outst.wHour,outst.wMinute,outst.wSecond,outst.wMilliseconds);
end; { myUTCToLocalTime }
ich mache etwas falsch
Incompatible types:ptimezoneinformation and _TIME_ZONE_INFORMATION