mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	 944e5cfb35
			
		
	
	
		944e5cfb35
		
	
	
	
	
		
			
			Remove superfluous includes from IPCCompiler's generated output and add include directives in IPC definitions where appropriate.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			415 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #include <LibGfx/ShareableBitmap.h>
 | |
| 
 | |
| endpoint NotificationServer
 | |
| {
 | |
|     show_notification([UTF8] String text, [UTF8] String title, Gfx::ShareableBitmap icon) => ()
 | |
| 
 | |
|     update_notification_text([UTF8] String text, [UTF8] String title) => (bool still_showing)
 | |
| 
 | |
|     update_notification_icon(Gfx::ShareableBitmap icon) => (bool still_showing)
 | |
| 
 | |
|     is_showing() => (bool still_showing)
 | |
| 
 | |
|     close_notification() => ()
 | |
| }
 |