44 lines
529 B
C++
44 lines
529 B
C++
// toIntTest.cpp : Defines the entry point for the console application.
|
|
//
|
|
|
|
#include <stdio.h>
|
|
#include "getCurrentTime.h"
|
|
|
|
#include "base/transform.h"
|
|
//#include "base/point.h"
|
|
|
|
#if !defined(__AIX) && !defined(__sparc)
|
|
#define LOW_ENDIAN_ARCH
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
#define MY_INLINE __forceinline
|
|
#else
|
|
#define MY_INLINE inline
|
|
#endif
|
|
|
|
#ifndef _MSC_VER
|
|
#define __int64 long
|
|
#endif
|
|
|
|
|
|
void test1()
|
|
{
|
|
}
|
|
|
|
void test2()
|
|
{
|
|
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
// Init
|
|
initGetCurrentTimeLib();
|
|
|
|
// test1();
|
|
test2();
|
|
|
|
return 0;
|
|
}
|