windows_autostart_task.h 444 B

12345678910111213141516
  1. /*
  2. This file is part of Telegram Desktop,
  3. the official desktop application for the Telegram messaging service.
  4. For license and copyright information please follow this link:
  5. https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
  6. */
  7. #pragma once
  8. namespace Platform::AutostartTask {
  9. void Toggle(bool enabled, Fn<void(bool)> done);
  10. void RequestState(Fn<void(bool)> callback);
  11. void OpenSettings();
  12. } // namespace Platform::AutostartTask