diff options
author | George Hazan <ghazan@miranda.im> | 2017-01-14 01:22:55 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-01-14 01:22:55 +0300 |
commit | d3cb19278d60ac6f7963379254546cdca36a90e2 (patch) | |
tree | f2fa018b343d5460419c1b323f5f3ce04a393d00 /protocols/IcqOscarJ/src/icq_direct.h | |
parent | d5a6c0666a8d8d2055a3f4402f67f91e8548ec3a (diff) |
separate handle types for HNETLIBCONN & HNETLIBBIND
Diffstat (limited to 'protocols/IcqOscarJ/src/icq_direct.h')
-rw-r--r-- | protocols/IcqOscarJ/src/icq_direct.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/IcqOscarJ/src/icq_direct.h b/protocols/IcqOscarJ/src/icq_direct.h index 7a412ced11..4b3da88a79 100644 --- a/protocols/IcqOscarJ/src/icq_direct.h +++ b/protocols/IcqOscarJ/src/icq_direct.h @@ -49,7 +49,7 @@ struct filetransfer: public basic_filetransfer DWORD dwTransferSpeed;
DWORD dwBytesDone, dwFileBytesDone;
int fileId;
- HANDLE hConnection;
+ HNETLIBCONN hConnection;
DWORD dwLastNotify;
int nVersion; // Was this sent with a v7 or a v8 packet?
BOOL bDC; // Was this received over a DC or through server?
@@ -65,7 +65,7 @@ struct filetransfer: public basic_filetransfer struct directconnect
{
MCONTACT hContact;
- HANDLE hConnection;
+ HNETLIBCONN hConnection;
DWORD dwConnectionCookie;
int type;
WORD wVersion;
|