mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[COMCTL32] Addendum to last commit (#3674) CORE-17199
Keep that section like we had it to
support compilation on VS2010.
It does still work like that.
Addendum to commit 0.4.15-dev-2796-g e382b7bc35
This commit is contained in:
parent
e382b7bc35
commit
adee5ca255
1 changed files with 5 additions and 0 deletions
|
@ -130,8 +130,13 @@ static const WCHAR allowedformatchars[] = L"dhHmMstyX";
|
|||
static const int maxrepetition [] = {4,2,2,2,4,2,2,4,-1};
|
||||
|
||||
/* valid date limits */
|
||||
#ifndef __REACTOS__
|
||||
static const SYSTEMTIME max_allowed_date = { .wYear = 9999, .wMonth = 12, .wDayOfWeek = 0, .wDay = 31 };
|
||||
static const SYSTEMTIME min_allowed_date = { .wYear = 1752, .wMonth = 9, .wDayOfWeek = 0, .wDay = 14 };
|
||||
#else
|
||||
static const SYSTEMTIME max_allowed_date = { /*.wYear =*/ 9999, /*.wMonth =*/ 12, /*.wDayOfWeek =*/ 0, /*.wDay =*/ 31 };
|
||||
static const SYSTEMTIME min_allowed_date = { /*.wYear =*/ 1752, /*.wMonth =*/ 9, /*.wDayOfWeek =*/ 0, /*.wDay =*/ 14 };
|
||||
#endif
|
||||
|
||||
static DWORD
|
||||
DATETIME_GetSystemTime (const DATETIME_INFO *infoPtr, SYSTEMTIME *systime)
|
||||
|
|
Loading…
Reference in a new issue