mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-02 19:38:32 +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 -
53 lines
913 B
ObjectPascal
53 lines
913 B
ObjectPascal
{
|
|
This file is part of the Free Component Library (FCL)
|
|
Copyright (c) 2010 by Sven Barth
|
|
|
|
Classes unit for NativeNT
|
|
|
|
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.
|
|
|
|
**********************************************************************}
|
|
|
|
{$mode objfpc}
|
|
|
|
{ determine the type of the resource/form file }
|
|
{$define Win16Res}
|
|
|
|
unit Classes;
|
|
|
|
{$INLINE ON}
|
|
|
|
interface
|
|
|
|
uses
|
|
sysutils,
|
|
types,
|
|
typinfo,
|
|
{$ifdef FPC_TESTGENERICS}
|
|
fgl,
|
|
{$endif}
|
|
rtlconsts;
|
|
|
|
{$i classesh.inc}
|
|
|
|
implementation
|
|
|
|
uses
|
|
NDK
|
|
;
|
|
|
|
{ OS - independent class implementations are in /inc directory. }
|
|
{$i classes.inc}
|
|
|
|
|
|
initialization
|
|
CommonInit;
|
|
finalization
|
|
CommonCleanup;
|
|
end.
|