annotate mcabber/socket.h @ 22:6a97e7cd00d9

[/trunk] Changeset 37 by mikael * Unexport the scr_SearchWindow() function. Use the new scr_IsHiddenMessage() function instead.
author mikael
date Sun, 27 Mar 2005 19:32:38 +0000
parents b3b2332715fb
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
1 #ifndef __SOCKET_H__
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
2 #define __SOCKET_H__ 1
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
3
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
4 #include <sys/socket.h>
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
5
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
6 int sk_conn(struct sockaddr *name);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
7 int sk_send(int sock, char *buffer);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
8 char *sk_recv(int sock);
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
9
b3b2332715fb Tailorization of /trunk
tailor@frmp8452
parents:
diff changeset
10 #endif