mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 10:19:31 +01: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 -
		
			
				
	
	
		
			39 lines
		
	
	
		
			754 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			754 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{
 | 
						|
    This file is part of the Free Pascal run time library.
 | 
						|
    Copyright (c) 2010 by Sven Barth
 | 
						|
 | 
						|
    Interface and OS-dependent part of variant support
 | 
						|
 | 
						|
    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}
 | 
						|
 | 
						|
Unit varutils;
 | 
						|
 | 
						|
Interface
 | 
						|
 | 
						|
Uses sysutils;
 | 
						|
 | 
						|
// Read definitions.
 | 
						|
 | 
						|
{$i varutilh.inc}
 | 
						|
 | 
						|
Implementation
 | 
						|
 | 
						|
// Code common to all platforms.
 | 
						|
 | 
						|
{$i cvarutil.inc}
 | 
						|
 | 
						|
// Code common to non-win32 platforms.
 | 
						|
 | 
						|
{$i varutils.inc}
 | 
						|
 | 
						|
end.
 |