diff options
author | George Hazan <ghazan@miranda.im> | 2019-02-25 23:47:56 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-02-25 23:47:56 +0300 |
commit | ea88e2c53d3ac0840955eb703213ca1430bb4361 (patch) | |
tree | 658c2290a12888922c9729a623d5d34e750bd626 /include/m_protosvc.h | |
parent | 45bf5f51cc788cb8f19e1b8fcd5b8818dc7a2e00 (diff) |
PROTORECVFILE now uses const char/wchar_t pointers. also fixes #1864 completely
Diffstat (limited to 'include/m_protosvc.h')
-rw-r--r-- | include/m_protosvc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_protosvc.h b/include/m_protosvc.h index aea91827ea..8ffed797c1 100644 --- a/include/m_protosvc.h +++ b/include/m_protosvc.h @@ -778,9 +778,9 @@ struct PROTORECVFILE {
DWORD dwFlags; // PRFF_*
DWORD timestamp; // unix time
- MAllStrings descr; // file description
+ MAllCStrings descr; // file description
int fileCount; // number of files being transferred
- MAllStringArray files; // array of file names
+ MAllCStringArray files; // array of file names
LPARAM lParam; // extra space for the network level protocol module
};
|