Files
libopenshot/include/Sleep.h

12 lines
172 B
C

#ifndef OPENSHOT_SLEEP_H
#define OPENSHOT_SLEEP_H
#ifdef _WINDOWS
#include <windows.h>
#else
#include <unistd.h>
#define Sleep(x) usleep((x)*1000)
#endif
#endif