CuteLogger
Fast and simple logging solution for Qt based applications
mvcp_socket.h
1 /*
2  * mvcp_socket.h -- Client Socket
3  * Copyright (C) 2002-2015 Meltytech, LLC
4  * Author: Charles Yates <charles.yates@pandora.be>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  */
21 
22 #ifndef _MVCP_SOCKET_H_
23 #define _MVCP_SOCKET_H_
24 
25 #ifdef __cplusplus
26 extern "C"
27 {
28 #endif
29 
33 typedef void *mvcp_socket;
34 
38 extern mvcp_socket mvcp_socket_init( char *, int );
39 extern int mvcp_socket_connect( mvcp_socket );
40 extern mvcp_socket mvcp_socket_init_fd( int );
41 extern int mvcp_socket_read_data( mvcp_socket, char *, int );
42 extern int mvcp_socket_write_data( mvcp_socket, const char *, int );
43 extern void mvcp_socket_close( mvcp_socket );
44 
45 #ifdef __cplusplus
46 }
47 #endif
48 
49 #endif