mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 08:19:36 +01:00 
			
		
		
		
	* make tchattr record endian dependant (merged)
This commit is contained in:
		
							parent
							
								
									f5d7a92939
								
							
						
					
					
						commit
						eaa720a4ff
					
				@ -319,8 +319,13 @@ end;
 | 
			
		||||
procedure UpdateTTY(Force:boolean);
 | 
			
		||||
type
 | 
			
		||||
  tchattr=packed record
 | 
			
		||||
{$ifdef ENDIAN_LITTLE}
 | 
			
		||||
    ch : char;
 | 
			
		||||
    attr : byte;
 | 
			
		||||
{$else}
 | 
			
		||||
    attr : byte;
 | 
			
		||||
    ch : char;
 | 
			
		||||
{$endif}
 | 
			
		||||
  end;
 | 
			
		||||
var
 | 
			
		||||
  outbuf   : array[0..1023+255] of char;
 | 
			
		||||
@ -836,7 +841,10 @@ finalization
 | 
			
		||||
end.
 | 
			
		||||
{
 | 
			
		||||
  $Log$
 | 
			
		||||
  Revision 1.4  2001-07-30 21:38:55  peter
 | 
			
		||||
  Revision 1.5  2001-07-31 19:33:46  peter
 | 
			
		||||
     * make tchattr record endian dependant (merged)
 | 
			
		||||
 | 
			
		||||
  Revision 1.4  2001/07/30 21:38:55  peter
 | 
			
		||||
    * m68k updates merged
 | 
			
		||||
 | 
			
		||||
  Revision 1.3  2001/07/13 22:05:09  peter
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user