summaryrefslogtreecommitdiff
path: root/src/socket.h
blob: e338f9d9c43da4e51c4e13801bb4f498233f5fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef SCREEN_SOCKET_H
#define SCREEN_SOCKET_H

#include "window.h"

int   FindSocket (int *, int *, int *, char *);
int   MakeClientSocket (int);
int   MakeServerSocket (void);
int   RecoverSocket (void);
int   chsock (void);
void  ReceiveMsg (void);
void  SendCreateMsg (char *, struct NewWindow *);
int   SendErrorMsg (char *, char *);
int   SendAttachMsg (int, Message *, int);
void  ReceiveRaw (int);

#endif /* SCREEN_SOCKET_H */