mirror of
				https://github.com/snltty/linker.git
				synced 2025-10-31 04:26:45 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			530 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			530 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using common.libs.helpers;
 | |
| 
 | |
| namespace cmonitor.client.reports.screen
 | |
| {
 | |
|     public interface IScreen
 | |
|     {
 | |
|         public DisplayInfo[] GetDisplays(out int w, out int h);
 | |
|         public void SetDisplayState(bool onState);
 | |
|         public uint GetLastInputTime();
 | |
| 
 | |
| 
 | |
|         public void Clip(ScreenClipInfo _screenClipInfo);
 | |
|         public bool IsClip();
 | |
| 
 | |
|         public DesktopFrame GetClipFrame();
 | |
|         public DesktopFrame GetFullFrame();
 | |
|         public DesktopFrame GetRegionFrame();
 | |
| 
 | |
|         public void WakeUp();
 | |
| 
 | |
| 
 | |
|     }
 | |
| }
 | 
