24 lines
		
	
	
	
		
			538 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			538 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| This file is part of Telegram Desktop,
 | |
| the official desktop application for the Telegram messaging service.
 | |
| 
 | |
| For license and copyright information please follow this link:
 | |
| https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | |
| */
 | |
| #pragma once
 | |
| 
 | |
| #include "data/data_feed.h"
 | |
| #include "data/data_messages.h"
 | |
| 
 | |
| namespace Storage {
 | |
| struct FeedMessagesKey;
 | |
| } // namespace Storage
 | |
| 
 | |
| namespace Data {
 | |
| 
 | |
| rpl::producer<MessagesSlice> FeedMessagesViewer(
 | |
| 	Storage::FeedMessagesKey key,
 | |
| 	int limitBefore,
 | |
| 	int limitAfter);
 | |
| 
 | |
| } // namespace Data
 | 
