mirror of
				https://gitlab.com/freepascal.org/lazarus/lazarus.git
				synced 2025-10-31 03:21:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			352 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			352 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| { The CairoCanvas package can be compiled on all platforms, except for WinCE.
 | |
|   This unit defines what units are available on which platform.
 | |
| }
 | |
| unit CairoCanvasAll;
 | |
| 
 | |
| {$mode objfpc}{$H+}
 | |
| 
 | |
| interface
 | |
| 
 | |
| {$IF ((FPC_FULLVERSION>=20701) or not defined(win64)) and not defined(WinCE)}
 | |
| uses
 | |
|   {%H-}CairoCanvas, {%H-}CairoPrinter;
 | |
| {$ENDIF}
 | |
| 
 | |
| implementation
 | |
| 
 | |
| end.
 | |
| 
 | 
