I am using GSettings in my Vala application to store some data. And one of my fields should store date. And all functions in Vala that manage date and time return int64 value.
I know how to store int values in GSettings schema, but I want to do it without converting int64 to int.
I know it's not a problem nowadays and I can safely convert int64 DateTime
to int, but someday it will overflow and won't work correctly.
So, the question: is storing int64 in GSettings possible? And if yes, how?