#ifndef TYPES_H #define TYPES_H #include #include #if defined(WIN32) #include #include #include #include //C (Windows) access #else #include #include #include #endif enum VideoPlayerState { VideoPlayer_Playing, VideoPlayer_Pause, VideoPlayer_Stop }; #if defined(WIN32) #else void Sleep(long mSeconds); #endif void mSleep(int mSecond); int64_t getTimeStamp_MilliSecond(); #endif // TYPES_H