mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-08 06:21:15 +02:00
* wince has to reuse also TSystemTime from the Windows unit inside the sysutils unit
git-svn-id: trunk@3472 -
This commit is contained in:
parent
8bd674af24
commit
0bbbfd23e5
@ -78,13 +78,13 @@ const
|
||||
}
|
||||
|
||||
type
|
||||
{$if not(defined(win32)) and not(defined(win64)) }
|
||||
{$ifndef windows}
|
||||
{ Win32 reuses the struct from the Windows unit }
|
||||
TSystemTime = record
|
||||
Year, Month, Day: word;
|
||||
Hour, Minute, Second, MilliSecond: word;
|
||||
end ;
|
||||
{$endif win32}
|
||||
{$endif windows}
|
||||
|
||||
TTimeStamp = record
|
||||
Time: integer; { Number of milliseconds since midnight }
|
||||
|
@ -33,6 +33,8 @@ uses
|
||||
{$i sysutilh.inc}
|
||||
|
||||
type
|
||||
TSystemTime = Windows.TSystemTime;
|
||||
|
||||
EWinCEError = class(Exception)
|
||||
public
|
||||
ErrorCode : DWORD;
|
||||
|
Loading…
Reference in New Issue
Block a user