* alias a few more types on windows. This makes developing portable software easier, since one doesn't have to conditionally import windows for e.g. tfiletime.

git-svn-id: trunk@20375 -
This commit is contained in:
marco 2012-02-18 19:20:07 +00:00
parent cc736fe115
commit f8f5c3cd23

View File

@ -233,7 +233,13 @@ type
TFileTime = _FILETIME;
FILETIME = _FILETIME;
PFileTime = ^TFileTime;
{$else}
type
PCLSID = Windows.PCLSID;
TCLSID = Windows.CLSID;
TFiletime = Windows.TFileTime;
Filetime = Windows.FileTime;
PFiletime = Windows.PFileTime;
{$endif Windows}
type