mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-10-31 04:31:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			295 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			295 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "common/KVMGFXHeader.h"
 | |
| 
 | |
| __interface ICapture
 | |
| {
 | |
| public:
 | |
|   bool Initialize();
 | |
|   void DeInitialize();
 | |
|   enum FrameType GetFrameType();
 | |
|   enum FrameComp GetFrameCompression();
 | |
|   size_t GetMaxFrameSize();
 | |
|   bool GrabFrame(void * buffer, size_t bufferSize, size_t * outLen);
 | |
| }; | 
