2010-11-24 03:13:51 +08:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
// File: gettimeofday.h
|
2012-02-22 05:38:45 +08:00
|
|
|
// Description: Header file for gettimeofday.cpp
|
|
|
|
// Author: tomp2010, zdenop
|
|
|
|
// Created: Tue Feb 21 21:38:00 CET 2012
|
2010-11-24 03:13:51 +08:00
|
|
|
//
|
2012-02-22 05:38:45 +08:00
|
|
|
// (C) Copyright 2012, Google Inc.
|
2010-11-24 03:13:51 +08:00
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
|
2011-08-16 03:28:25 +08:00
|
|
|
#ifndef VS2008_PORT_GETTIMEOFDAY_H_
|
|
|
|
#define VS2008_PORT_GETTIMEOFDAY_H_
|
|
|
|
|
2012-02-20 05:48:45 +08:00
|
|
|
#ifdef _WIN32
|
2010-11-24 03:13:51 +08:00
|
|
|
#include <winsock.h> // timeval is defined in here.
|
|
|
|
#endif
|
|
|
|
|
2012-02-26 23:30:05 +08:00
|
|
|
typedef struct timezone tz;
|
|
|
|
|
2011-08-16 03:28:25 +08:00
|
|
|
int gettimeofday(struct timeval * tp, struct timezone * tzp);
|
|
|
|
|
|
|
|
#endif // VS2008_PORT_GETTIMEOFDAY_H_
|