// 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