18 lines
260 B
C
18 lines
260 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
/**
|
|
* @brief create the wayland thread
|
|
*
|
|
* @return 0 on success
|
|
*/
|
|
int wayland_create_thread(void);
|
|
|
|
/**
|
|
* @brief set the idle lock
|
|
*
|
|
* @param lock change the idle lock state
|
|
*/
|
|
void wayland_set_idle_lock(int lock);
|