mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-20 14:29:21 +02:00
* Fix for 10534. tagstatstg now aliased in activex.pp to types.pp
git-svn-id: trunk@9616 -
This commit is contained in:
parent
4958973566
commit
574827a844
@ -1125,22 +1125,10 @@ TYPE
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
tagSTATSTG = record
|
tagSTATSTG = types.tagSTATSTG;
|
||||||
pwcsName : POleStr;
|
|
||||||
dwType : DWord;
|
|
||||||
cbSize : ULarge_integer;
|
|
||||||
mtime : TFileTime;
|
|
||||||
ctime : TFileTime;
|
|
||||||
atime : TFileTime;
|
|
||||||
grfMode : DWord;
|
|
||||||
grfLocksSupported : DWord;
|
|
||||||
clsid : TCLSID;
|
|
||||||
grfStateBits : DWord;
|
|
||||||
reserved : DWord;
|
|
||||||
end;
|
|
||||||
|
|
||||||
TStatStg = tagSTATSTG;
|
TStatStg = tagSTATSTG;
|
||||||
PStatStg = ^TStatStg;
|
PStatStg = types.PStatStg;
|
||||||
STATSTG = TStatStg;
|
STATSTG = TStatStg;
|
||||||
|
|
||||||
{ TagRemSNB = Record
|
{ TagRemSNB = Record
|
||||||
|
@ -228,17 +228,17 @@ type
|
|||||||
packed
|
packed
|
||||||
{$endif FPC_REQUIRES_PROPER_ALIGNMENT}
|
{$endif FPC_REQUIRES_PROPER_ALIGNMENT}
|
||||||
record
|
record
|
||||||
pwcsName : POleStr;
|
pwcsName : POleStr;
|
||||||
dwType : Longint;
|
dwType : DWord;
|
||||||
cbSize : Largeint;
|
cbSize : Large_uint;
|
||||||
mtime : TFileTime;
|
mtime : TFileTime;
|
||||||
ctime : TFileTime;
|
ctime : TFileTime;
|
||||||
atime : TFileTime;
|
atime : TFileTime;
|
||||||
grfMode : Longint;
|
grfMode : DWord;
|
||||||
grfLocksSupported : Longint;
|
grfLocksSupported : DWord;
|
||||||
clsid : TCLSID;
|
clsid : TCLSID;
|
||||||
grfStateBits : Longint;
|
grfStateBits : DWord;
|
||||||
reserved : Longint;
|
reserved : DWord;
|
||||||
end;
|
end;
|
||||||
TStatStg = tagSTATSTG;
|
TStatStg = tagSTATSTG;
|
||||||
STATSTG = TStatStg;
|
STATSTG = TStatStg;
|
||||||
|
Loading…
Reference in New Issue
Block a user