18 lines
631 B
C
18 lines
631 B
C
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
// Name: wx/time.h
|
||
|
// Purpose: Miscellaneous time-related functions.
|
||
|
// Author: Vadim Zeitlin
|
||
|
// Created: 2011-11-26
|
||
|
// RCS-ID: $Id: wxhead.h,v 1.12 2010-04-22 12:44:51 zeitlin Exp $
|
||
|
// Copyright: (c) 2011 Vadim Zeitlin <vadim@wxwidgets.org>
|
||
|
// Licence: wxWindows licence
|
||
|
///////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef _WX_TIME_H_
|
||
|
#define _WX_TIME_H_
|
||
|
|
||
|
// Returns the difference between UTC and local time in seconds.
|
||
|
WXDLLIMPEXP_BASE int wxGetTimeZone();
|
||
|
|
||
|
#endif // _WX_TIME_H_
|