mirror of
				https://git.proxmox.com/git/qemu
				synced 2025-10-31 16:49:58 +00:00 
			
		
		
		
	 254e59506e
			
		
	
	
		254e59506e
		
	
	
	
	
		
			
			Add a new cursor type to console.h and a bunch of functions to deal with cursors the (new) cursor.c file. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* XPM */
 | |
| static const char *cursor_hidden_xpm[] = {
 | |
|     "32 32 1 1",
 | |
|     "  c None",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
|     "                                ",
 | |
| };
 |