mirror of https://github.com/procxx/kepka.git
19 lines
423 B
C++
19 lines
423 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 "base/basic_types.h"
|
|
|
|
// Methods that must be implemented outside lib_base.
|
|
|
|
namespace base {
|
|
|
|
void EnterFromEventLoop(FnMut<void()> &&method);
|
|
|
|
} // namespace
|