blob: 17886f9231c9b84aa0bef6a7697e37f2da67447a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: screenshot.hh
// Description: Screenshot handling
#ifndef CLIENT_SCREENSHOT_HH
#define CLIENT_SCREENSHOT_HH
#pragma once
namespace screenshot
{
void init(void);
void take(void);
} // namespace screenshot
#endif
|