made Fnt an anonymous struct
This commit is contained in:
		
							parent
							
								
									18592825d2
								
							
						
					
					
						commit
						de34639883
					
				| @ -1,5 +1,5 @@ | |||||||
| # dmenu version
 | # dmenu version
 | ||||||
| VERSION = 2.3 | VERSION = 2.4 | ||||||
| 
 | 
 | ||||||
| # Customize below to fit your system
 | # Customize below to fit your system
 | ||||||
| 
 | 
 | ||||||
|  | |||||||
							
								
								
									
										23
									
								
								dmenu.h
									
									
									
									
									
								
							
							
						
						
									
										23
									
								
								dmenu.h
									
									
									
									
									
								
							| @ -14,25 +14,20 @@ | |||||||
| /* color */ | /* color */ | ||||||
| enum { ColFG, ColBG, ColLast }; | enum { ColFG, ColBG, ColLast }; | ||||||
| 
 | 
 | ||||||
| typedef struct DC DC; | typedef struct { | ||||||
| typedef struct Fnt Fnt; | 	int x, y, w, h; | ||||||
| 
 | 	unsigned long norm[ColLast]; | ||||||
| struct Fnt { | 	unsigned long sel[ColLast]; | ||||||
|  | 	Drawable drawable; | ||||||
|  | 	GC gc; | ||||||
|  | 	struct { | ||||||
| 		XFontStruct *xfont; | 		XFontStruct *xfont; | ||||||
| 		XFontSet set; | 		XFontSet set; | ||||||
| 		int ascent; | 		int ascent; | ||||||
| 		int descent; | 		int descent; | ||||||
| 		int height; | 		int height; | ||||||
| }; | 	} font; | ||||||
| 
 | } DC; /* draw context */ | ||||||
| struct DC { |  | ||||||
| 	int x, y, w, h; |  | ||||||
| 	unsigned long norm[ColLast]; |  | ||||||
| 	unsigned long sel[ColLast]; |  | ||||||
| 	Drawable drawable; |  | ||||||
| 	Fnt font; |  | ||||||
| 	GC gc; |  | ||||||
| }; /* draw context */ |  | ||||||
| 
 | 
 | ||||||
| extern int screen; | extern int screen; | ||||||
| extern Display *dpy; | extern Display *dpy; | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user