mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
32 lines
346 B
C
32 lines
346 B
C
|
/*
|
||
|
* Stub version of uxsel.c, for test programs.
|
||
|
*/
|
||
|
|
||
|
#include "putty.h"
|
||
|
|
||
|
void uxsel_init(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void uxsel_set(int fd, int rwx, uxsel_callback_fn callback)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void uxsel_del(int fd)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
int next_fd(int *state, int *rwx)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
int first_fd(int *state, int *rwx)
|
||
|
{
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
void select_result(int fd, int event)
|
||
|
{
|
||
|
}
|