Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 244 of file timezone.c.
Referenced by TimeZonePageProc().
{ TIME_ZONE_INFORMATION TimeZoneInfo; PTIMEZONE_ENTRY Entry; DWORD dwIndex; DWORD i; GetTimeZoneInformation(&TimeZoneInfo); dwIndex = 0; i = 0; Entry = TimeZoneListHead; while (Entry != NULL) { SendMessageW(hwnd, CB_ADDSTRING, 0, (LPARAM)Entry->Description); if (!wcscmp(Entry->StandardName, TimeZoneInfo.StandardName)) dwIndex = i; i++; Entry = Entry->Next; } SendMessageW(hwnd, CB_SETCURSEL, (WPARAM)dwIndex, 0); }