summaryrefslogtreecommitdiff
path: root/native/jni/java-net/local.h
blob: 035996a800dbea631c73243893f25a4a6b9fb2ad (plain)
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
#ifndef __LOCAL_H__
#define __LOCAL_H__

#ifdef __cplusplus
extern "C"
{
#endif
#define __EMACSEN__ }

extern const char *local_error (void);
extern int local_create (int);
extern int local_bind (int, const char *);
extern int local_listen (int, int);
extern int local_accept (int, char *);
extern int local_available (int);
extern int local_close (int);
extern int local_shutdown_input (int);
extern int local_shutdown_output (int);
extern int local_connect (int, char *);
extern int local_unlink (char *);
extern int local_read (int, void *, int);
extern int local_write (int, void *, int);

#ifdef __cplusplus
}
#endif

#endif /* __LOCAL_H__ */