blob: 609e3266be130ad5aec397a273ae91fb088b31dd (
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: direct_connection.hh
// Description: Direct connection screen
#ifndef CLIENT_GUI_DIRECT_CONNECTION_HH
#define CLIENT_GUI_DIRECT_CONNECTION_HH
#pragma once
namespace direct_connection
{
void init(void);
void layout(void);
} // namespace direct_connection
#endif
|