diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-16 14:41:46 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-16 14:41:46 +0000 |
commit | bad38585d1dd5f8683c369bc21fb7addd23da67a (patch) | |
tree | b1548589a857842a88979d89c6c0b15d034a7e54 /src/modules/utils | |
parent | 18fd4bec97159cbaa7501a8a1b67540e0865e88b (diff) |
removed not needed _MSC_VER checks
git-svn-id: http://svn.miranda-ng.org/main/trunk@6089 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/utils')
-rw-r--r-- | src/modules/utils/timezones.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/modules/utils/timezones.cpp b/src/modules/utils/timezones.cpp index 8bcd80f4ac..f5f3c15291 100644 --- a/src/modules/utils/timezones.cpp +++ b/src/modules/utils/timezones.cpp @@ -27,20 +27,6 @@ simple UTC offsets. TIME_API tmi;
-#if _MSC_VER < 1500
- typedef struct _TIME_DYNAMIC_ZONE_INFORMATION_T {
- LONG Bias;
- WCHAR StandardName[ 32 ];
- SYSTEMTIME StandardDate;
- LONG StandardBias;
- WCHAR DaylightName[ 32 ];
- SYSTEMTIME DaylightDate;
- LONG DaylightBias;
- WCHAR TimeZoneKeyName[ 128 ];
- BOOLEAN DynamicDaylightTimeDisabled;
- } DYNAMIC_TIME_ZONE_INFORMATION;
-#endif
-
typedef DWORD (WINAPI *pfnGetDynamicTimeZoneInformation_t)(DYNAMIC_TIME_ZONE_INFORMATION *pdtzi);
static pfnGetDynamicTimeZoneInformation_t pfnGetDynamicTimeZoneInformation;
|