blob: a1a295fc4af000920a702f09b26d101b9d6a17b3 [file] [log] [blame]
// Copyright 2016 The Cobalt Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// A poem (POsix EMulation) for time functions based on EzTime, which is based
// on ICU and Starboard.
#ifndef STARBOARD_CLIENT_PORTING_POEM_EZTIME_POEM_H_
#define STARBOARD_CLIENT_PORTING_POEM_EZTIME_POEM_H_
#if defined(STARBOARD)
#include "starboard/client_porting/eztime/eztime.h"
#if !defined(POEM_NO_EMULATION)
#undef time_t
#define time_t EzTimeT
#undef tm
#define tm EzTimeExploded
#undef timeval
#define timeval EzTimeValue
#undef gettimeofday
#define gettimeofday(a, b) EzTimeValueGetNow(a, b)
#undef gmtime_r
#define gmtime_r(a, b) EzTimeTExplodeUTC(a, b)
#undef localtime_r
#define localtime_r(a, b) EzTimeTExplodeLocal(a, b)
#undef mktime
#define mktime(x) EzTimeTImplodeLocal(x)
#undef time
#define time(x) EzTimeTGetNow(x)
#undef timegm
#define timegm(x) EzTimeTImplodeUTC(x)
#undef timelocal
#define timelocal(x) EzTimeTImplodeLocal(x)
#endif // POEM_NO_EMULATION
#endif // STARBOARD
#endif // STARBOARD_CLIENT_PORTING_POEM_EZTIME_POEM_H_