mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 14:29:33 +02:00

* Many more RTL units are enabled now, like SysUtils, Classes, Math, FGL, etc and Text-, File- and ConsoleIO features are enabled now as well (Threading and Processes are enabled, too, but their implementations are only stubs!). ConsoleIO isn't tested though, because the processes that are started by SMSS have their Standard Handles set to 0. git-svn-id: trunk@16553 -
28 lines
780 B
PHP
28 lines
780 B
PHP
{%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;
|
|
|