diff options
author | George Hazan <george.hazan@gmail.com> | 2012-10-07 15:27:48 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-10-07 15:27:48 +0000 |
commit | ecb5d187aec965f0fc021002dbf2afab22d300e8 (patch) | |
tree | 5ee5f2fae0321c4231e5bf091c9a3c4db38f78dc /include/delphi | |
parent | 9da2dd7426201c576579c4e36086b612b3594628 (diff) |
merge of C++ API changes
git-svn-id: http://svn.miranda-ng.org/main/trunk@1805 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_protocols.inc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/delphi/m_protocols.inc b/include/delphi/m_protocols.inc index 426268744c..26137e8a8c 100644 --- a/include/delphi/m_protocols.inc +++ b/include/delphi/m_protocols.inc @@ -149,7 +149,7 @@ type program's lifetime. Do not use this list in the global context, copy protocols
names otherwise.
IMPORTANT NOTE #2: in version 0.8 this service is mapped to the MS_PROTO_ENUMACCOUNTS
- service to provide the compatibility with old plugins (first three members of
+ service to provide the compatibility with old plugins (first three members of
PROTOACCOUNT are equal to the old PROTOCOLDESCRIPTOR format). If you declare the
MIRANDA_VER macro with value greater or equal to 0x800, use MS_PROTO_ENUMPROTOS
service instead to obtain the list of running protocols instead of accounts.
@@ -252,14 +252,13 @@ const lParam=(LPARAM)(int)typing state }
ME_PROTO_CONTACTISTYPING:PAnsiChar = 'Proto/ContactIsTypingEvent';
-// -------------- accounts support --------------------- 0.8.0+
+// -------------- accounts support --------------------- 0.8.0+
type
PPROTOACCOUNT = ^TPROTOACCOUNT;
TPROTOACCOUNT = record
cbSize :int; // sizeof this structure
szModuleName :PAnsiChar; // unique physical account name (matches database module name)
- _type :int; // always equal to PROTOTYPE_PROTOCOL
tszAccountName :TChar; // user-defined account name
szProtoName :PAnsiChar; // physical protocol name
bIsEnabled :int; // is account enabled?
|