Searched refs:local_time (Results 1 – 4 of 4) sorted by relevance
| /GUIX-v6.2.1/test/example_internal/guix_medical_mouse_support/ |
| D | demo_guix_medical_mouse_support.c | 117 SYSTEMTIME local_time; in UpdateTimeDate() local 118 GetLocalTime(&local_time); in UpdateTimeDate() 119 if (local_time.wHour < 12) in UpdateTimeDate() 121 sprintf(time_string, "%d:%02d", local_time.wHour, local_time.wMinute); in UpdateTimeDate() 126 sprintf(time_string, "%d:%02d", local_time.wHour - 12, local_time.wMinute); in UpdateTimeDate() 131 gx_prompt_text_set(&window->med_screen_base_day_prompt, day_names[local_time.wDayOfWeek]); in UpdateTimeDate() 133 …sprintf(date_string, "%s %02d, %d", month_names[local_time.wMonth - 1], local_time.wDay, local_tim… in UpdateTimeDate()
|
| /GUIX-v6.2.1/samples/demo_guix_home_automation/ |
| D | demo_guix_home_automation.c | 375 SYSTEMTIME local_time; in clock_update() local 376 GetLocalTime(&local_time); in clock_update() 377 if (local_time.wHour < 12) in clock_update() 385 gx_numeric_prompt_value_set(&main_screen.main_screen_hour, (GX_VALUE)local_time.wHour); in clock_update() 386 gx_numeric_prompt_value_set(&main_screen.main_screen_minute, (GX_VALUE)local_time.wMinute); in clock_update() 389 …tf(date_string, "%s, %s %02d", day_names[local_time.wDayOfWeek], month_names[local_time.wMonth - 1… in clock_update() 394 if (local_time.wSecond & 0x1) in clock_update()
|
| /GUIX-v6.2.1/samples/demo_guix_car_infotainment/ |
| D | demo_guix_car_infotainment.c | 289 SYSTEMTIME local_time; in clock_update() local 290 GetLocalTime(&local_time); in clock_update() 292 gx_numeric_prompt_value_set(&main_screen.main_screen_time_hour, local_time.wHour); in clock_update() 293 gx_numeric_prompt_value_set(&main_screen.main_screen_time_minute, local_time.wMinute); in clock_update() 294 local_time_second = local_time.wSecond; in clock_update()
|
| /GUIX-v6.2.1/samples/demo_guix_smart_watch/ |
| D | demo_guix_smart_watch.c | 345 SYSTEMTIME local_time; in system_clock_update() local 346 GetLocalTime(&local_time); in system_clock_update() 348 system_time.month = local_time.wMonth; in system_clock_update() 349 system_time.day = local_time.wDay; in system_clock_update() 350 system_time.day_of_week = local_time.wDayOfWeek; in system_clock_update() 351 system_time.hour = local_time.wHour; in system_clock_update() 352 system_time.minute = local_time.wMinute; in system_clock_update() 353 system_time.second = local_time.wSecond; in system_clock_update()
|