Hi all!
I try to create date time and put it in the notes internal TIMEDATE structure, and and vice versa, all works fine except Dst fields:
TIME local_tm = {0};
…
local_tm.dst = 1; //true
…
TimeLocalToGM(&local_tm);
TimeGMToLocal(&local_tm);
…
local_tm.dst //local_tm.dst = 0 !!?!!? must be 1, wtf?
all others parameters (minutes, hours, year … ) converted correctly
is this a lotus bug?