reactos/dll/cpl/timedate/resource.h
Bișoc George 5a81a5bc14
[TIMEDATE] Implement the dynamic NTP status notification (#2352)
Time/Date control panel applet displays the status of the NTP server synchronization with the system informing the user the actual condition of the said sync, if it has failed or suceeded. The commit also implements IDS_INETTIMEWELCOME which serves as a placeholder as Time/Date loads the last successful attempt of NTP synchronization which I don't know how the CPL remembers it. With that said, IDS_INETTIMEWELCOME will stay for a while until someone figures out how timedate.cpl works internally.
CORE-16684
2020-02-24 19:56:02 +09:00

41 lines
1.1 KiB
C

#pragma once
#define IDC_CPLICON 1
#define IDD_DATETIMEPAGE 100
#define IDC_MONTHCB 101
#define IDC_YEAREDIT 102
#define IDC_MONTHCALENDAR 103
#define IDC_CLOCKWND 104
#define IDC_TIMEZONE 106
#define IDC_TIMEPICKER 107
#define IDC_YEAR 108
#define IDC_YEARTEXT 109
#define IDD_TIMEZONEPAGE 110
#define IDC_TIMEZONELIST 111
#define IDC_AUTODAYLIGHT 113
#define IDC_WORLD_BACKGROUND 114
#define IDC_WORLD 115
#define IDD_INETTIMEPAGE 120
#define IDC_SERVERLIST 121
#define IDC_UPDATEBUTTON 122
#define IDC_AUTOSYNC 123
#define IDC_SUCSYNC 126
#define IDC_NEXTSYNC 127
#define IDC_SERVERTEXT 128
#define IDC_CLOCK 129
#define IDS_CPLNAME 1001
#define IDS_CPLDESCRIPTION 1002
#define IDS_TIMEZONETEXT 1003
#define IDS_TIMEZONEINVALID 1004
#define IDS_TIMEZONEUNKNOWN 1005
#define IDS_INETTIMESUCSYNC 1006
#define IDS_INETTIMENEXTSYNC 1007
#define IDS_INETTIMESYNCING 1008
#define IDS_INETTIMEERROR 1009
#define IDS_INETTIMESUCFILL 1010
#define IDS_INETTIMEWELCOME 1011