You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
12 lines
172 B
C
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
|