平台定义宏

#ifdef _WIN32
//windows x86 or x68
#ifdef _WIN64 //x64
typedef uint64_t point_t;
#else //x86
typedef uint32_t UPoint;
#endif //_WIN64
#else //unix
#ifdef __x86_64__ //x64
#elif __i386__ //x86
#endif
#endif //_WIN32