efl/src/lib/efl/interfaces/efl_types.eot

21 lines
532 B
Plaintext

struct @extern Efl.Time
{
[[This type is a alias for struct tm.
It is intended to be a standard way to reference
it in .eo files.
@since 1.18
]]
tm_sec: int; [[Seconds. [0-60] (1 leap second)]]
tm_min: int; [[Minutes. [0-59] ]]
tm_hour: int; [[Hours. [0-23] ]]
tm_mday: int; [[Day. [1-31] ]]
tm_mon: int; [[Month. [0-11] ]]
tm_year: int; [[Year - 1900.]]
tm_wday: int; [[Day of week. [0-6] ]]
tm_yday: int; [[Days in year.[0-365] ]]
tm_isdst: int; [[DST. [-1/0/1] ]]
}