mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
14 lines
168 B
C
14 lines
168 B
C
|
#ifndef PLATFORM_H
|
||
|
#define PLATFORM_H
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
/* Platform-dependent code */
|
||
|
|
||
|
namespace Platform
|
||
|
{
|
||
|
u_int32_t getIdleTime();
|
||
|
}
|
||
|
|
||
|
#endif // PLATFORM_H
|