Files correlati : Ricompilazione Demo : [ ] Commento : Figate dell'ultimo momento e aggiunte diemnticate git-svn-id: svn://10.65.10.50/trunk@8008 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			22 lines
		
	
	
		
			295 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			295 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
| #ifndef __JOURNAL_H
 | |
| #define __JOURNAL_H
 | |
| 
 | |
| #pragma pack(4)
 | |
| 
 | |
| struct TJournalHeader
 | |
| {
 | |
|   char   _signature[4];
 | |
|   long   _header_length;
 | |
|   time_t _time;
 | |
|   long   _firm;
 | |
|   long   _logic_num;
 | |
|   char   _operation[4];
 | |
|   char   _type[4];
 | |
|   long   _data_size;
 | |
|   char   _name[32];
 | |
| };
 | |
| 
 | |
| #pragma pack()
 | |
| 
 | |
| #endif
 |