21 lines
284 B
C
21 lines
284 B
C
#ifndef RIVERGUILE_CALL_IDLE_HANDLER_H
|
|
#define RIVERGUILE_CALL_IDLE_HANDLER_H
|
|
|
|
#include "seat.h"
|
|
|
|
enum Idle_handler_event
|
|
{
|
|
IDLE,
|
|
RESUME,
|
|
};
|
|
|
|
struct Call_idle_handler_parameters
|
|
{
|
|
struct Idle *idle;
|
|
enum Idle_handler_event event;
|
|
};
|
|
|
|
void *call_idle_handler (void *data);
|
|
|
|
#endif
|