diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-03 16:56:45 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-03 16:56:45 +0300 |
commit | f9883d97b3a586663f85075206fe7e07b41ed366 (patch) | |
tree | 1aa3f212a908eda296de192129df8e49cc10cb13 /include/delphi | |
parent | 9613f96e6a6f96ad02a0fc926054132811ae2bb1 (diff) |
unneeded size fields removed
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_protocols.inc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/delphi/m_protocols.inc b/include/delphi/m_protocols.inc index c4038e9600..76796c06ed 100644 --- a/include/delphi/m_protocols.inc +++ b/include/delphi/m_protocols.inc @@ -47,7 +47,6 @@ type type
PACKDATA = ^TACKDATA;
TACKDATA = record
- cbSize : int;
szModule: PAnsiChar; // the name of the protocol module which initiated this ack
hContact: TMCONTACT;
_type : int; // an ACKTYPE_* constant
@@ -119,7 +118,6 @@ type // especially for Miranda 9.0+
PPROTOFILETRANSFERSTATUS = ^TPROTOFILETRANSFERSTATUS;
TPROTOFILETRANSFERSTATUS = record
- cbSize : size_t;
hContact : TMCONTACT;
flags : dword; // one of PFTS_* constants
files : ^TCHAR;
@@ -241,7 +239,6 @@ type PPROTOACCOUNT = ^TPROTOACCOUNT;
PPPROTOACCOUNT = ^PPROTOACCOUNT;
TPROTOACCOUNT = record
- cbSize :int; // sizeof this structure
szModuleName :PAnsiChar; // unique physical account name (matches database module name)
tszAccountName :TChar; // user-defined account name
szProtoName :PAnsiChar; // physical protocol name
|