blob: ce9c1e901928d729a2a2f649dde90b590b590197 [file] [log] [blame]
Victor Chang73229502020-09-17 13:39:19 +01001// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3/*
4********************************************************************************
5* Copyright (C) 2005-2011, International Business Machines
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
19#if U_PLATFORM_USES_ONLY_WIN32_API
20
21/**
22 * \file
23 * \brief C API: Utilities for dealing w/ Windows time zones.
24 */
25
26U_CDECL_BEGIN
27/* Forward declarations for Windows types... */
28typedef struct _TIME_ZONE_INFORMATION TIME_ZONE_INFORMATION;
29U_CDECL_END
30
Victor Changce4bf3c2021-01-19 16:34:24 +000031U_CAPI const char* U_EXPORT2
Victor Chang73229502020-09-17 13:39:19 +010032uprv_detectWindowsTimeZone();
33
34#endif /* U_PLATFORM_USES_ONLY_WIN32_API */
35
36#endif /* __WINTZ */