mirror of
				https://github.com/thunderbrewhq/thunderbrew
				synced 2025-10-31 00:06:05 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			339 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			339 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef ASYNC_ASYNC_FILE_HPP
 | |
| #define ASYNC_ASYNC_FILE_HPP
 | |
| 
 | |
| #include "async/CAsyncObject.hpp"
 | |
| 
 | |
| CAsyncObject* AsyncFileReadAllocObject();
 | |
| 
 | |
| void AsyncFileReadDestroyObject(CAsyncObject* object);
 | |
| 
 | |
| void AsyncFileReadInitialize(uint32_t threadSleep, uint32_t handlerTimeout);
 | |
| 
 | |
| void AsyncFileReadObject(CAsyncObject* object, int32_t a2);
 | |
| 
 | |
| #endif
 | 
