blob: fba8283676a92a1b1b7bb9d72b7f905d1aa47587 (
plain) (
blame)
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
32
33
|
#ifndef HAVE_ESPIK_H
#define HAVE_ESPIK_H
#include <Ecore_Data.h>
typedef struct
{
char* host;
unsigned short port;
} t_servinfo;
typedef struct
{
char* nickname;
char* username;
char* realname; /* gecos */
} t_userinfo;
typedef struct
{
t_servinfo* server;
t_userinfo* client;
} t_info;
t_info a_infos;
Ecore_List *ptr_list;
void espik_free (void*);
int del_backslash (char*);
void espik_shutdown();
int main (int, char**);
#endif /* HAVE_ESPIK_H */
|