22 lines
567 B
C
22 lines
567 B
C
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: wx/time.h
|
||
|
// Purpose: Time-related functions.
|
||
|
// Author: Vadim Zeitlin
|
||
|
// Created: 2011-11-27
|
||
|
// RCS-ID: $Id$
|
||
|
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
|
||
|
// Licence: wxWindows licence
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
/** @addtogroup group_funcmacro_time */
|
||
|
//@{
|
||
|
|
||
|
/**
|
||
|
Returns the difference between UTC and local time in seconds.
|
||
|
|
||
|
@header{wx/time.h}
|
||
|
*/
|
||
|
int wxGetTimeZone();
|
||
|
|
||
|
//@}
|