1152
|
1
|
|
2 #ifndef _FILE_SESSION_H
|
|
3 #define _FILE_SESSION_H
|
|
4
|
|
5 #include "icq.h"
|
|
6 #include "icqtypes.h"
|
|
7
|
|
8 icq_FileSession *icq_FileSessionNew(ICQLINK *);
|
|
9 void icq_FileSessionDelete(void *);
|
|
10 void icq_FileSessionSetStatus(icq_FileSession *, int);
|
|
11 icq_FileSession *icq_FindFileSession(ICQLINK *, unsigned long, unsigned long);
|
|
12 void icq_FileSessionSetHandle(icq_FileSession *, const char *);
|
|
13 void icq_FileSessionSetCurrentFile(icq_FileSession *, const char *);
|
|
14 void icq_FileSessionPrepareNextFile(icq_FileSession *);
|
|
15 void icq_FileSessionSendData(icq_FileSession *);
|
|
16
|
|
17 #endif
|