wintz.h 939 B

123456789101112131415161718192021222324252627282930313233343536
  1. // © 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. #ifndef __WINTZ
  14. #define __WINTZ
  15. #include "unicode/utypes.h"
  16. #if U_PLATFORM_USES_ONLY_WIN32_API
  17. /**
  18. * \file
  19. * \brief C API: Utilities for dealing w/ Windows time zones.
  20. */
  21. U_CDECL_BEGIN
  22. /* Forward declarations for Windows types... */
  23. typedef struct _TIME_ZONE_INFORMATION TIME_ZONE_INFORMATION;
  24. U_CDECL_END
  25. U_INTERNAL const char* U_EXPORT2
  26. uprv_detectWindowsTimeZone();
  27. #endif /* U_PLATFORM_USES_ONLY_WIN32_API */
  28. #endif /* __WINTZ */