File: no-uxsel.c

package info (click to toggle)
putty 0.83-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,216 kB
  • sloc: ansic: 148,476; python: 8,466; perl: 1,830; makefile: 128; sh: 117
file content (31 lines) | stat: -rw-r--r-- 346 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * 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)
{
}