GetLocalTime
Docslocal year, month, day, hour, minute, second = GetLocalTime()Description
Gets local system time as year, month, day, hour, minute and second.
Example usage:
int year;
int month;
int day;
int hour;
int minute;
int second;
or use std::tm struct
TIME::GET_LOCAL_TIME(&year, &month, &day, &hour, &minute, &second);Parameters
| Name | Type | Description |
|---|---|---|
year | int* | — |
month | int* | — |
day | int* | — |
hour | int* | — |
minute | int* | — |
second | int* | — |
Returns
voidThis native does not return a value.