diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-31 17:34:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-31 17:34:45 +0000 |
commit | 9f32f113a011e34338b76eef83da6f006d528e61 (patch) | |
tree | e5b37d4a1c7073288556b7e2526561230acf96d9 /include/m_protosvc.h | |
parent | d57b6799dac75f3c428393666d079fe59361c4b5 (diff) |
fixes for the file sending
git-svn-id: http://svn.miranda-ng.org/main/trunk@13940 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_protosvc.h')
-rw-r--r-- | include/m_protosvc.h | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/include/m_protosvc.h b/include/m_protosvc.h index b65d83eb95..0ac0c7c8a1 100644 --- a/include/m_protosvc.h +++ b/include/m_protosvc.h @@ -33,19 +33,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "m_protocols.h"
-/* ***** Unicode Services note ********
-******************************************
-
-Only new style protocols (Miranda 0.9+) with m_iVersion set to 2 or higher
-support Unicode services documented below, all other support only ANSI.
-
-For all other that do not support Unicode services, Miranda core will
-convert Unicode to ANSI and call the appropriate service.
-*/
-
-/*************************** NON-CONTACT SERVICES ************************/
-// these should be called with CallProtoServiceInt(NULL,)
+/////////////////////////////////////////////////////////////////////////////////////////
+// WARNING:
+// all services from this file should be called via CallProtoService()
+/////////////////////////////////////////////////////////////////////////////////////////
// Get the capability flags of the module.
// wParam = flagNum
// lParam = 0
@@ -54,6 +46,7 @@ convert Unicode to ANSI and call the appropriate service. // Non-network-access modules should return flags to represent the things they
// actually actively use, not the values that it is known to pass through
// correctly
+
#define PFLAGNUM_1 1
#define PF1_IMSEND 0x00000001 // supports IM sending
#define PF1_IMRECV 0x00000002 // supports IM receiving
|