mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 13:09:32 +02:00
* TPropVariant must be packed record, its size should match Variant (16 bytes)
* LPVERSIONEDSTREAM is a pointer type. git-svn-id: trunk@17387 -
This commit is contained in:
parent
786f0a5067
commit
e3feef2126
@ -1686,7 +1686,7 @@ TYPE
|
||||
end;
|
||||
VERSIONEDSTREAM = tagVersionedStream;
|
||||
TVERSIONEDSTREAM = tagVersionedStream;
|
||||
LPVERSIONEDSTREAM = tagVersionedStream;
|
||||
LPVERSIONEDSTREAM = ^tagVersionedStream;
|
||||
PVERSIONEDSTREAM = ^TagVersionedStream;
|
||||
|
||||
|
||||
@ -1856,7 +1856,8 @@ TYPE
|
||||
IPropertyStorage = Interface;
|
||||
IEnumSTATPROPSETSTG = interface;
|
||||
|
||||
TPROPVARIANT = record
|
||||
{ size of this record must be 16, i.e. match Variant }
|
||||
TPROPVARIANT = packed record
|
||||
vt : VARTYPE;
|
||||
wReserved1 : PROPVAR_PAD1;
|
||||
wReserved2 : PROPVAR_PAD2;
|
||||
|
Loading…
Reference in New Issue
Block a user