]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
73c04bcf A |
3 | /* |
4 | ******************************************************************************** | |
4388f060 | 5 | * Copyright (C) 2005-2011, International Business Machines |
73c04bcf A |
6 | * Corporation and others. All Rights Reserved. |
7 | ******************************************************************************** | |
8 | * | |
9 | * File WINTZ.H | |
10 | * | |
11 | ******************************************************************************** | |
12 | */ | |
13 | ||
14 | #ifndef __WINTZ | |
15 | #define __WINTZ | |
16 | ||
17 | #include "unicode/utypes.h" | |
18 | ||
f3c0d7a5 A |
19 | // This file contains only desktop windows behavior |
20 | // Windows UWP calls Windows::Globalization directly, so this isn't needed there. | |
21 | #if U_PLATFORM_USES_ONLY_WIN32_API && (U_PLATFORM_HAS_WINUWP_API == 0) | |
73c04bcf A |
22 | |
23 | /** | |
24 | * \file | |
25 | * \brief C API: Utilities for dealing w/ Windows time zones. | |
26 | */ | |
27 | ||
28 | U_CDECL_BEGIN | |
29 | /* Forward declarations for Windows types... */ | |
30 | typedef struct _TIME_ZONE_INFORMATION TIME_ZONE_INFORMATION; | |
31 | U_CDECL_END | |
32 | ||
46f4442e | 33 | U_CFUNC const char* U_EXPORT2 |
73c04bcf A |
34 | uprv_detectWindowsTimeZone(); |
35 | ||
f3c0d7a5 | 36 | #endif /* U_PLATFORM_USES_ONLY_WIN32_API && (U_PLATFORM_HAS_WINUWP_API == 0) */ |
73c04bcf A |
37 | |
38 | #endif /* __WINTZ */ |