mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 23:09:18 +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;
|
end;
|
||||||
VERSIONEDSTREAM = tagVersionedStream;
|
VERSIONEDSTREAM = tagVersionedStream;
|
||||||
TVERSIONEDSTREAM = tagVersionedStream;
|
TVERSIONEDSTREAM = tagVersionedStream;
|
||||||
LPVERSIONEDSTREAM = tagVersionedStream;
|
LPVERSIONEDSTREAM = ^tagVersionedStream;
|
||||||
PVERSIONEDSTREAM = ^TagVersionedStream;
|
PVERSIONEDSTREAM = ^TagVersionedStream;
|
||||||
|
|
||||||
|
|
||||||
@ -1856,7 +1856,8 @@ TYPE
|
|||||||
IPropertyStorage = Interface;
|
IPropertyStorage = Interface;
|
||||||
IEnumSTATPROPSETSTG = interface;
|
IEnumSTATPROPSETSTG = interface;
|
||||||
|
|
||||||
TPROPVARIANT = record
|
{ size of this record must be 16, i.e. match Variant }
|
||||||
|
TPROPVARIANT = packed record
|
||||||
vt : VARTYPE;
|
vt : VARTYPE;
|
||||||
wReserved1 : PROPVAR_PAD1;
|
wReserved1 : PROPVAR_PAD1;
|
||||||
wReserved2 : PROPVAR_PAD2;
|
wReserved2 : PROPVAR_PAD2;
|
||||||
|
Loading…
Reference in New Issue
Block a user