blob: afb0a483734e98a4727c86c59d4c14b8dac0925a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
{%MainUnit ndk.pas}
{
Native Development Kit for Native NT
This file is part of the Free Pascal run time library.
This unit contains RTL functions.
Copyright (c) 2010 by Sven Barth
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
function RtlTimeFieldsToTime(
TimeFields: PTIME_FIELDS;
Time: PLARGE_INTEGER
): NT_BOOLEAN; external ntdll;
procedure RtlTimeToTimeFields(
Time: PLARGE_INTEGER;
TimeFields: PTIME_FIELDS
); external ntdll;
|