Files
amadeus_26_fb/others/include/systime.h
2019-08-09 01:24:58 +08:00

27 lines
469 B
C

//
// Created by xinyang on 19-7-31.
//
#ifndef _PLATFORM_H_
#define _PLATFORM_H_
//typedef struct{
// float second;
// float millisecond;
//} systime;
typedef double systime;
void getsystime(systime &t);
double getTimeIntervalms(const systime &now, const systime &last);
#if defined(Linux) || defined(Darwin)
#include <sys/time.h>
#elif defined(Windows)
#include <Windows.h>
#else
#error "nonsupport platform."
#endif
#endif /* _PLATFORM_H_ */